Files
mach_examples/00_hello_text/main.c
2026-04-25 18:47:29 -05:00

14 lines
196 B
C

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