Files
nerak/examples/00_hello_text/main.c
T
2026-06-26 14:09:38 -05:00

11 lines
163 B
C

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