- Add new commands: annotate, narrative, requeue - Refactor WebSocket client into modular components (net/ws/) - Add rsync embedded binary support - Improve error handling and response packet processing - Update build.zig and completions
5 lines
242 B
Zig
5 lines
242 B
Zig
// Network module - exports all network modules
|
|
pub const protocol = @import("net/protocol.zig");
|
|
pub const ws = @import("net/ws.zig");
|
|
pub const ws_client = @import("net/ws/client.zig");
|
|
pub const ws_opcodes = @import("net/ws/opcodes.zig");
|