- 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
11 lines
476 B
Zig
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;
|