This commit creates a bunch of new modules that contain code and tests for various concepts/implementations that used to exist inside bot.zig. Notable amongst these are: - buffer.zig, which contain the circular buffer containing both backlog and outbox messages. - parser.zig, which contain the parser used to parse commands from IRC messages.
6 lines
242 B
Zig
6 lines
242 B
Zig
//! By convention, root.zig is the root source file when making a library.
|
|
|
|
pub const bot = @import("bot.zig");
|
|
pub const buffer = @import("buffer.zig");
|
|
pub const parser = @import("parser.zig");
|
|
pub const commands = @import("commands.zig");
|