diff --git a/api/index.go b/api/index.go index c6ef16b11c9ae6c2f782e34dce5820b4607f1d79..0385aa29eb70952d3e177be18276090446f73b7c 100644 --- a/api/index.go +++ b/api/index.go @@ -5,11 +5,11 @@ import ( ) // Version is set by main and it is given to requests at / -var Version = "2.x" +var Version = "v2.DEV" func index(c *Context) { c.WriteHeader("Content-Type", "text/plain; charset=utf-8") - c.Write([]byte("CheeseGull v" + Version + " Woo\nFor more information: https://github.com/osuripple/cheesegull")) + c.Write([]byte("CheeseGull " + Version + " Woo\nFor more information: https://github.com/osuripple/cheesegull")) } var _evh = expvar.Handler()