We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e349ba4 commit a95efa6Copy full SHA for a95efa6
cmd/main.go
@@ -16,10 +16,10 @@ import (
16
)
17
18
var (
19
- version = "master"
20
- commit = ""
21
- date = ""
22
- builtBy = ""
+ Version = "master"
+ Commit = ""
+ Date = ""
+ BuiltBy = ""
23
24
25
@@ -54,7 +54,7 @@ func showMeta(lc *leetcode.Leetcode, number string) {
54
}
55
56
func main() {
57
- app.Version(buildVersion(version, commit, date, builtBy))
+ app.Version(buildVersion(Version, Commit, Date, BuiltBy))
58
app.VersionFlag.Short('v')
59
app.HelpFlag.Short('h')
60
0 commit comments