Files
mach_examples/03_hello_world_html_db/main.c
2026-05-25 15:49:53 -05:00

19 lines
372 B
C

#include <mach.h>
#include <sqlite.h>
mach(){
sqlite_database(
.name = "hello_db",
.connect = "file:hello.db?mode=rwc",
.migrations = {"create_hello_world_table"},
.seeds = {"seed_hello_world"}
);
resource("home", "/",
.get = {
sqlite_query({"hello_db", "get_hello_world", "hello_world_data"}),
mustache("hello_world")
}
);
}