Files
mach_examples/00_hello_text/main.c

14 lines
204 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <mach.h>
config mach(){
return (config) {
.resources = {{
{"home", "/", mime_txt,
.get = {{
render((r){"hello", .mime = mime_txt})
}}
}
}}
};
}