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