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