aboutsummaryrefslogtreecommitdiff
path: root/src/main.zig
blob: 1a66b63045e54573fdc99c57b595586012ab08c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This is the main executable file.
//! Here we will add all cli interfaces
//! to interact with the state of the application
//! but also the actual running of the server / webapp.

const std = @import("std");

pub fn main(init: std.process.Init) !void {
    _ = init;
}

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