Files
mach_examples/02_hello_world_html/main.c
2026-04-24 00:40:14 -05:00

26 lines
518 B
C

#include <mach.h>
config mach(){
return (config) {
.resources = {
{"home", "/",
.get = {
validate({"name",
.validation = "^\\S{1,16}$",
.fallback = "world",
.message = "must be 1-16 characters, no spaces"
}),
render(.template =
"<html>"
"<head></head>"
"<body>"
"<p>Hello {{name}}</p>"
"</body>"
"</html>"
)
}
}
}
};
}