Skip to content

Commit

Permalink
Fixed some linting issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
seeruk committed Jun 7, 2017
1 parent 3a58d6a commit 455eb61
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions pkg/tid/cli/application.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ import (
)

var (
BuildTime string = "n/a"
Commit string = "n/a"
Version string = "n/a"
// BuildTime should be set to a datetime string.
BuildTime = "n/a"
// Commit should be set to a Git commit SHA.
Commit = "n/a"
// Version should be set to the tid version.
Version = "n/a"
)

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

0 comments on commit 455eb61

Please sign in to comment.