lph-11/odin-http/comparisons/empty-ok-all/odin/main.odin

19 lines
306 B
Odin
Raw Normal View History

2025-03-13 18:14:21 +13:00
package empty_ok_all
import "core:fmt"
import http "../../.."
main :: proc() {
s: http.Server
fmt.println("Listening on http://localost:8080...")
handler := http.handler(proc(_: ^http.Request, res: ^http.Response) {
res.status = .OK
http.respond(res)
})
http.listen_and_serve(&s, handler)
}