Files
nerack/examples/00_hello_text/hello.c
T
2026-09-13 15:31:00 -05:00

12 lines
189 B
C

#include <nerack.h>
#include <http.h>
module(hello){
context("greeting", "hello world");
http("home", "/", .mime = mime_text,
.get = {
http_response("greeting")
}
);
}