Files
mach_examples/02_hello_world_html/main.c

22 lines
428 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <mach.h>
config mach(){
return (config) {
.resources = {
{"home", "/",
.get = {
validate({"name", .validation = validate_not_empty, .fallback = "world",}),
render(.template =
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
)
}
}
}
};
}