12 lines
176 B
C
12 lines
176 B
C
#include <mach.h>
|
|
|
|
config mach(){
|
|
return (config) {
|
|
.resources = {
|
|
{"home", "/", .mime = mime_txt,
|
|
.get = {render(.template= "hello")}
|
|
}
|
|
}
|
|
};
|
|
}
|