16 lines
280 B
C
16 lines
280 B
C
|
|
#include <mach.h>
|
||
|
|
#include <session_auth.h>
|
||
|
|
#include "todos/todos.c"
|
||
|
|
#include "activity/activity.c"
|
||
|
|
|
||
|
|
void mach(){
|
||
|
|
error(m_error, {mustache("5xx")});
|
||
|
|
error(m_not_found, {mustache("404")});
|
||
|
|
|
||
|
|
middleware(session());
|
||
|
|
|
||
|
|
resource("home", "/",
|
||
|
|
.get = {mustache("home")}
|
||
|
|
);
|
||
|
|
}
|