This resulted in some minor binding fixes. In theory, all the main wrapped API endpoints are now covered.
10 lines
271 B
Zig
10 lines
271 B
Zig
// This file is licensed under the CC0 1.0 license.
|
|
// See: https://creativecommons.org/publicdomain/zero/1.0/legalcode
|
|
|
|
test {
|
|
_ = @import("./nats.zig");
|
|
_ = @import("./connection.zig");
|
|
_ = @import("./message.zig");
|
|
_ = @import("./subscription.zig");
|
|
}
|