From 455eb61a32e0413621a990d974d3c333605541c6 Mon Sep 17 00:00:00 2001 From: Elliot Wright Date: Wed, 7 Jun 2017 22:47:57 +0100 Subject: [PATCH] Fixed some linting issues. --- pkg/tid/cli/application.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkg/tid/cli/application.go b/pkg/tid/cli/application.go index 4b0cdef..2193ab9 100644 --- a/pkg/tid/cli/application.go +++ b/pkg/tid/cli/application.go @@ -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