Files
mach_examples/00_hello_text/main.c
2026-05-08 09:39:28 -05:00

12 lines
173 B
C

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