From 2393b81174a1f81b7f4c4433d4b980b6569539bb Mon Sep 17 00:00:00 2001 From: Anton Cherepanov Date: Sat, 15 Nov 2014 17:06:06 +0500 Subject: [PATCH] Show pgweb version on start --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index 575d663..5dd9a8c 100644 --- a/main.go +++ b/main.go @@ -141,6 +141,7 @@ func startServer() { router.GET("/history", API_History) router.GET("/static/:type/:name", API_ServeAsset) + fmt.Println("Pgweb version", VERSION) fmt.Println("Starting server...") go router.Run(fmt.Sprintf("%v:%v", options.HttpHost, options.HttpPort)) }