Files
mach_examples/01_hello_world_text/main.c
2026-05-03 22:45:33 -05:00

15 lines
291 B
C

#include <mach.h>
config mach(){
return (config) {
.resources = {
{"home", "/", .mime = mime_txt,
.get = {
validate({"name", .validation = validate_not_empty, .fallback = "world"}),
render(.template = "Hello {{name}}")
}
}
}
};
}