//! 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()); }