diff options
Diffstat (limited to 'examples/http-server/http-server.tm')
| -rw-r--r-- | examples/http-server/http-server.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/http-server/http-server.tm b/examples/http-server/http-server.tm index 56ba3683..1a09b601 100644 --- a/examples/http-server/http-server.tm +++ b/examples/http-server/http-server.tm @@ -138,7 +138,7 @@ func load_routes(directory:Path -> {Text=RouteEntry}): func main(directory:Path, port=Int32(8080)): say("Serving on port $port") routes := load_routes(directory) - !! Hosting: $routes + say(" Hosting: $routes") serve(port, func(request:HTTPRequest): if handler := routes[request.path]: |
