restructured handlers to maximise line space

This commit is contained in:
David Vennik
2022-12-28 12:22:54 +00:00
parent aeae237ae3
commit a3962c32ed
4 changed files with 183 additions and 93 deletions

View File

@@ -10,11 +10,11 @@ var (
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "493e661bd056e6c6d21eab841dddea39788d62aa"
ParentGitCommit = "1f73709fbafd7e43150a298f32d9f00520e7e47b"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-28T10:03:58Z"
BuildTime = "2022-12-28T12:22:54Z"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.252"
SemVer = "v0.0.253"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag.
@@ -22,7 +22,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 252
Patch = 253
)
// Version returns a pretty printed version information string.