df51d

Results 1 comments of df51d

fwiw here is how I serve my static files right now: ```zig fn serve_file(path: []u8, req: *httpz.Request, res: *httpz.Response) !void { const file = try std.fs.openFileAbsolute(path, .{}); defer file.close(); const...