refactor: Moved zmq package to the top level.

This commit is contained in:
2026-07-08 15:09:21 -04:00
parent 836f1da723
commit 763ac3ec4c
4 changed files with 1 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
#+test
package zmq
import "core:testing"
@(test)
test_error_type :: proc(t: ^testing.T) {
e: Error = .EFSM
testing.expect_value(t, size_of(e), 8)
}