Files

11 lines
162 B
C
Raw Permalink Normal View History

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