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