initial commit

This commit is contained in:
Nathan Anderson
2023-10-26 18:54:59 -06:00
commit f5a1dca0b1
3 changed files with 117 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const std = @import("std");
const options = @import("options");
pub fn main() void {
std.debug.print("Ello there\n", .{});
comptime {
const route = @import(options.zig_files[0]);
route.get();
// @compileLog("Got option zig file " ++ options.zig_files[0] ++ "\n");
}
return;
}