16 lines
247 B
C
16 lines
247 B
C
#include <mach.h>
|
|
#include <session_auth.h>
|
|
#include "todos/todos.c"
|
|
#include "activity/activity.c"
|
|
|
|
mach(main){
|
|
middleware(session());
|
|
|
|
resource("home", "/",
|
|
.get = {
|
|
mustache("home", "home_s"),
|
|
respond("home_s")
|
|
}
|
|
);
|
|
}
|