15 lines
276 B
C
15 lines
276 B
C
|
|
#include <mach.h>
|
||
|
|
|
||
|
|
config mach(){
|
||
|
|
return (config) {
|
||
|
|
.resources = {
|
||
|
|
{"home", "/", .mime = m_txt,
|
||
|
|
.get = {
|
||
|
|
input({"name", .validate = v_not_empty, .fallback = "world"}),
|
||
|
|
render(.template = "Hello {{name}}")
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|