11 lines
166 B
Plaintext
Executable File
11 lines
166 B
Plaintext
Executable File
fn hello_init {
|
|
if(~ $req_path /hello) {
|
|
app_body_handler = 'hello_body'
|
|
pageTitle='Hi title!'
|
|
}
|
|
}
|
|
|
|
fn hello_body {
|
|
echo 'Hello world!'
|
|
}
|