set Version to "unset" so that it's overwritten in make

This commit is contained in:
Stephen McQuay 2018-03-08 15:12:08 -08:00
parent a4987f4f42
commit 2bb100c87b
Signed by: sm
GPG Key ID: 4E4B72F479BA3CE5
1 changed files with 1 additions and 1 deletions

2
hw.go
View File

@ -2,7 +2,7 @@ package hw
import "net/http"
const Version = "v0.1.2"
var Version = "unset"
// OK simply return 200
func OK(w http.ResponseWriter, req *http.Request) {}