aboutsummaryrefslogtreecommitdiff
path: root/src/api/root.zig
blob: c28991c43c35f46e95066a6f7e025d4785d2450e (plain)
1
2
3
4
5
6
7
8
9
10
//! There should not be any http specific stuff in here,
//! only the specific api endpoints.

const std = @import("std");

pub const _ = @import("sketch.zig");

test {
    _ = std.testing.refAllDecls(@This());
}