Files
mach_examples/00_hello_text/main.c
2026-05-23 18:51:37 -05:00

10 lines
129 B
C

#include <mach.h>
void mach(){
resource("home", "/", .mime = m_txt,
.get = {
mustache(.body = "hello")
}
);
}