Files
nerak/examples/01_hello_world_text/app.c
T
2026-07-17 17:54:32 -05:00

13 lines
238 B
C

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