Skip to content

Commit 455eb61

Browse files
committed
Fixed some linting issues.
1 parent 3a58d6a commit 455eb61

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

pkg/tid/cli/application.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,12 @@ import (
1111
)
1212

1313
var (
14-
BuildTime string = "n/a"
15-
Commit string = "n/a"
16-
Version string = "n/a"
14+
// BuildTime should be set to a datetime string.
15+
BuildTime = "n/a"
16+
// Commit should be set to a Git commit SHA.
17+
Commit = "n/a"
18+
// Version should be set to the tid version.
19+
Version = "n/a"
1720
)
1821

1922
// CreateApplication builds the console application instance. Providing it with some basic

0 commit comments

Comments
 (0)