Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
fever-ch
GitHub Repository: fever-ch/go-google-sites-proxy
Path: blob/master/common/constants.go
508 views
1
package common
2
3
// ProgramInfoStruct is a structure that define the program (incl. build informations)
4
type ProgramInfoStruct struct {
5
Name string
6
Fullname string
7
Version string
8
Git string
9
BuildDate string
10
ProjectURL string
11
}
12
13
// ProgramInfo is a variable containing the informations about the current build
14
var ProgramInfo = ProgramInfoStruct{"GSSP",
15
"Go Google Site Proxy",
16
"0.0.1-SNAPSHOT",
17
"undefined",
18
"undefined",
19
"https://ggsp.fever.ch"}
20
21