From be8a0d93ba796fcd91655f7c63eab282c9152f7c Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Wed, 29 May 2019 07:44:10 -0700 Subject: [PATCH] Indicate where we're serving --- tools/serve | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/serve b/tools/serve index 9c74d8e..7f67eb8 100755 --- a/tools/serve +++ b/tools/serve @@ -14,4 +14,6 @@ Handler.extensions_map.update({ '': 'text/html', }); httpd = SocketServer.TCPServer(("", PORT), Handler) + +print("Serving Go by Example at http://127.0.0.1:{}".format(PORT)) httpd.serve_forever()