basic working ping relay simulation

This commit is contained in:
David Vennik
2022-12-28 16:34:23 +00:00
parent 83af1b273e
commit 1b1da488f7
9 changed files with 173 additions and 45 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 = "894afbd3a2ec5742387f3203e4e08b906557c319"
ParentGitCommit = "d77ece43a28634a1c8502bac025840d70f3b23e2"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-28T13:19:51Z"
BuildTime = "2022-12-28T16:34:23Z"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.254"
SemVer = "v0.0.255"
// 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 = 254
Patch = 255
)
// Version returns a pretty printed version information string.