created circuit and return path convenience functions

This commit is contained in:
David Vennik
2022-11-28 20:15:44 +01:00
parent 6ed8af9a3c
commit 724e68ad5f
2 changed files with 17 additions and 7 deletions

View File

@@ -13,11 +13,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 = "5d1c67824760812269ab8ffc7641b7728b6ad597"
ParentGitCommit = "40865d86002154fc105be210be2acff747db92e4"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-11-28T16:21:42+01:00"
BuildTime = "2022-11-28T20:15:44+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.138"
SemVer = "v0.0.139"
// 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.
@@ -25,7 +25,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 138
Patch = 139
)
// Version returns a pretty printed version information string.