Files
nerak/examples/00_hello_text/app.c
T
2026-07-31 15:42:16 -05:00

11 lines
162 B
C

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