From af788a05367cdd3ba9365fdd103faa869cda5441 Mon Sep 17 00:00:00 2001 From: torque Date: Wed, 23 Aug 2023 22:28:44 -0700 Subject: [PATCH] nats: export Status There's not much of a reason this should be used externally, but I also favor having things be exported rather than not exported. There will probably be more opening up of the other imports here in the future. --- src/nats.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nats.zig b/src/nats.zig index 1765e9b..bf494c9 100644 --- a/src/nats.zig +++ b/src/nats.zig @@ -35,7 +35,7 @@ pub const Message = msg_.Message; pub const Statistics = sta_.Statistics; pub const StatsCounts = sta_.StatsCounts; -const Status = err_.Status; +pub const Status = err_.Status; pub const Error = err_.Error; pub fn getVersion() [:0]const u8 {