Files
nerak/examples/00_hello_text/app.c
T
2026-07-07 15:52:39 -05:00

11 lines
162 B
C

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