This commit is contained in:
Nathan Anderson 2023-10-26 20:36:52 -06:00
parent f5a1dca0b1
commit 1e8283f0c9
3 changed files with 6 additions and 0 deletions

0
lib/index.html Normal file
View File

6
lib/routes.zig Normal file
View File

@ -0,0 +1,6 @@
const std = @import("std");
pub fn get() i32 {
std.debug.print("Running route get!\n", .{});
return 13;
}

View File