Files
nerak/examples/01_hello_world_text/app.c
T

13 lines
243 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <nerak.h>
config(app){
context("greeting", "hello {{name}}");
resource("home", "/", .mime = m_txt,
.get = {
input({"name", .fallback = "world"}),
mustache("greeting", "hello"),
respond("hello")
}
);
}