fetch_ml/cli/src/net/ws.zig
Jeremie Fraeys 8e3fa94322
feat(cli): enhance Zig CLI with new commands and improved networking
- 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
2026-02-12 12:05:10 -05:00

11 lines
476 B
Zig

// WebSocket module - exports websocket components
pub const client = @import("ws/client.zig");
pub const frame = @import("ws/frame.zig");
pub const handshake = @import("ws/handshake.zig");
pub const resolve = @import("ws/resolve.zig");
pub const response = @import("ws/response.zig");
pub const response_handlers = @import("ws/response_handlers.zig");
pub const opcode = @import("ws/opcode.zig");
pub const utils = @import("ws/utils.zig");
pub const Client = client.Client;