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

const std = @import("std");

const http = @import("http");
const Interface = http.handler.Interface;

pub const interfaces: []const Interface = &.{};

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