aboutsummaryrefslogtreecommitdiff
path: root/examples/http-server
diff options
context:
space:
mode:
Diffstat (limited to 'examples/http-server')
-rw-r--r--examples/http-server/http-server.tm1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/http-server/http-server.tm b/examples/http-server/http-server.tm
index 4c04491a..80774bff 100644
--- a/examples/http-server/http-server.tm
+++ b/examples/http-server/http-server.tm
@@ -112,7 +112,6 @@ enum RouteEntry(ServeFile(file:Path), Redirect(destination:Text))
return HTTPResponse(body, content_type=_content_type(file))
is Redirect(destination)
return HTTPResponse("Found", 302, headers={"Location"=destination})
- return HTTPResponse("Unreachable", 500)
func load_routes(directory:Path -> {Text=RouteEntry})
routes : &{Text=RouteEntry}