htzx/lib/routes.zig

7 lines
115 B
Zig
Raw Normal View History

2023-10-26 20:36:52 -06:00
const std = @import("std");
pub fn get() i32 {
std.debug.print("Running route get!\n", .{});
return 13;
}