Files
nerak/examples/01_hello_world_text/main.c
T
2026-07-07 15:38:24 -05:00

13 lines
244 B
C

#include <nerak.h>
config(main){
context("greeting", "hello {{name}}");
resource("home", "/", .mime = m_txt,
.get = {
input({"name", .fallback = "world"}),
mustache("greeting", "hello"),
respond("hello")
}
);
}