Files
nerak/examples/00_hello_text/app.c
T

11 lines
162 B
C
Raw Normal View History

2025-07-24 12:46:01 -05:00
#include <nerak.h>
config(app){
context("greeting", "hello world");
resource("home", "/", .mime = m_txt,
.get = {
respond("greeting")
}
);
}