Files
nerack/examples/01_hello_world_text/hello_world.c
T

14 lines
294 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <nerack.h>
#include <http.h>
module(hello_world){
context("greeting", "hello {{name}}");
http("home", "/", .mime = mime_text,
.get = {
input({"name", not_empty_input, .default_value = "world"}),
html("greeting", "hello"),
http_response("hello")
}
);
}