13 lines
241 B
C
13 lines
241 B
C
#include <mach.h>
|
|
|
|
mach(main){
|
|
context("greeting", "hello {{name}}");
|
|
resource("home", "/", .mime = m_txt,
|
|
.get = {
|
|
input({"name", .fallback = "world"}),
|
|
mustache("greeting", "hello"),
|
|
respond("hello")
|
|
}
|
|
);
|
|
}
|