Implement parsing browser requests and sending errors (#9)

This commit is contained in:
Maxim Baz
2018-04-14 12:49:03 +02:00
committed by GitHub
parent 60a4a1ddaa
commit 42e6157238
10 changed files with 192 additions and 28 deletions

15
version/version.go Normal file
View File

@@ -0,0 +1,15 @@
package version
import "fmt"
const major = 3
const minor = 0
const patch = 0
// Code version as integer
const Code = major*1000000 + minor*1000 + patch
// String version as string
func String() string {
return fmt.Sprintf("%d.%d.%d", major, minor, patch)
}