diff options
author | Robby Zambito <contact@robbyzambito.me> | 2025-09-09 22:27:09 -0400 |
---|---|---|
committer | Robby Zambito <contact@robbyzambito.me> | 2025-09-09 22:30:31 -0400 |
commit | c673401c2ad1c463153fe4dd7f2eb400459896b6 (patch) | |
tree | 541a5b1662edc8ef58a405650387fad27cae01ef /src/root.zig | |
parent | 74b0c9ef1f8def6145aad0362a3bd7da9dc1b482 (diff) |
Use writer instead of RawSocket in ClientIo-writer
Diffstat (limited to 'src/root.zig')
-rw-r--r-- | src/root.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/root.zig b/src/root.zig index 6f45130..b7c2795 100644 --- a/src/root.zig +++ b/src/root.zig @@ -1,5 +1,6 @@ pub const Client = @import("Client.zig"); pub const Connection = @import("Connection.zig"); +pub const RawSocketWriter = @import("RawSocketWriter.zig"); const msg = @import("message.zig"); |