Skip to content
Snippets Groups Projects
Unverified Commit 9bdfa825 authored by Morgan Bazalgette's avatar Morgan Bazalgette
Browse files

Fix homepage showing 'vv2.1.0'

parent fad2e92b
No related branches found
No related tags found
No related merge requests found
......@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment