switch to uuids for clients

This commit is contained in:
2026-01-09 20:08:33 -05:00
parent aec871ebdb
commit 4a228c8dba
2 changed files with 71 additions and 56 deletions

View File

@@ -29,11 +29,10 @@ pub fn init(
};
}
pub fn deinit(self: *Client, alloc: std.mem.Allocator) void {
pub fn deinit(self: Client, alloc: std.mem.Allocator) void {
if (self.connect) |c| {
c.deinit(alloc);
}
self.* = undefined;
}
pub fn start(self: *Client, io: std.Io) !void {