Tests are CC0/public domain because there's no reason for them not to be. Examples are also CC0/public domain, but this may be a little bit weird because they are largely straightforward ports of examples from nats.c which carry the Apache license. However, I personally wrote them against the zig bindings and I doubt anyone will end up in a court of law due to their software containing uselessly trivial example code.
9 lines
232 B
Zig
9 lines
232 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");
|
|
}
|