blob: 87f18926d11ebff02f2f07ba3d837a7263181c77 (
plain)
1
2
3
4
5
|
//! By convention, root.zig is the root source file when making a library.
const std = @import("std");
pub const log = @import("log.zig");
pub const routes = @import("routes/root.zig");
|