using Astralis; void main() { var server = new Server(8080); server.map_get("/hello", (context) => { print("Handling /hello\n"); context.response.body = "Hello from Astralis!"; context.response.content_type = "text/plain"; }); server.map_get("/json", (context) => { context.response.body = "{ \"message\": \"Hello JSON\" }"; context.response.content_type = "application/json"; }); server.run(); }