Maint: rename BUILD_DATE to CREATED

This commit is contained in:
Quentin McGaw (desktop)
2021-07-20 15:28:02 +00:00
parent cb0e89a38e
commit 1e0bfc3b0c
5 changed files with 16 additions and 16 deletions

View File

@@ -43,9 +43,9 @@ import (
//nolint:gochecknoglobals
var (
version = "unknown"
commit = "unknown"
buildDate = "an unknown date"
version = "unknown"
commit = "unknown"
created = "an unknown date"
)
var (
@@ -55,9 +55,9 @@ var (
func main() {
buildInfo := models.BuildInformation{
Version: version,
Commit: commit,
BuildDate: buildDate,
Version: version,
Commit: commit,
Created: created,
}
ctx := context.Background()