10 lines
140 B
Plaintext
10 lines
140 B
Plaintext
|
|
fun index(req)
|
|
return {code: 200, 'body': 'Hello, world!'};
|
|
|
|
routes = {
|
|
'/': index,
|
|
'/groups': list_groups
|
|
}
|
|
|
|
res = serve(8080, routes); |