blob: 301664ee98ce71f8a1202ba0ebe6edc67fd2832d (
plain)
1
2
3
4
5
6
|
//! 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");
pub const Storage = @import("storage/root.zig");
|