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