blob: 176d3b2b1ea6352d8d669589eae106ec914fc7dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//! 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");
const http = @import("http");
const api = @import("api");
const web = @import("web/root.zig");
const routes: http.RouteSet = .init(api.interfaces ++ web.interfaces);
pub fn main(init: std.process.Init) !void {
try http.serve(init.gpa, routes, .{
.address = try .parseLiteral("0.0.0.0:8080"),
});
}
|