From efb3aae55908cb88f5a9c900d6563603ab792d6a Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 20 May 2025 15:22:41 -0400 Subject: Add more advanced configuration options to modules.ini and support automatically downloading and installing from it. --- examples/http-server/http-server.tm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'examples/http-server/http-server.tm') diff --git a/examples/http-server/http-server.tm b/examples/http-server/http-server.tm index 717aa733..89141c32 100644 --- a/examples/http-server/http-server.tm +++ b/examples/http-server/http-server.tm @@ -9,9 +9,9 @@ use use use -use commands_v1.0 -use pthreads_v1.0 -use patterns_v1.0 +use commands +use pthreads +use patterns use ./connection-queue.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) - say(" Hosting: $routes") + say("Hosting: $routes") serve(port, func(request:HTTPRequest) if handler := routes[request.path] -- cgit v1.2.3