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