Files
nerack/examples/00_hello_text/hello.c
T

12 lines
189 B
C
Raw Normal View History

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