Files
nerak/examples/00_hello_text/main.c
T
2026-06-24 15:28:49 -05:00

11 lines
163 B
C

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