13 lines
200 B
C
13 lines
200 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")}
|
|
);
|
|
}
|