11 lines
199 B
C
11 lines
199 B
C
|
|
#include <mach.h>
|
||
|
|
|
||
|
|
void mach(){
|
||
|
|
resource("home", "/", .mime = m_txt,
|
||
|
|
.get = {
|
||
|
|
input({"name", m_not_empty, .fallback = "world"}),
|
||
|
|
mustache(.template = "Hello {{name}}")
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|