Files
mach_examples/00_hello_text/main.c
2026-03-30 19:19:23 -05:00

14 lines
204 B
C

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