Adding barebones server.

This commit is contained in:
Colin Lyons
2022-12-24 14:10:22 +00:00
parent 82a219f055
commit 579344a69c
7 changed files with 1166 additions and 82 deletions

View File

@@ -11,21 +11,21 @@ var (
// URL is the git URL for the repository.
URL = "github.com/Indra-Labs/indra"
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/indra-bootstrap"
GitRef = "refs/heads/ind-bootstrap"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "8c361507bd145da860c9753d1dfb8951223ffc39"
ParentGitCommit = "ba46f778e53c3124b2557befd3780179e4c5face"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-21T19:14:06Z"
BuildTime = "2022-12-23T17:00:14Z"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.212"
SemVer = "v0.0.214"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
PathBase = "/home/lyo/Seafile/Git/indra-labs/indra/"
// Major is the major number from the tag.
Major = 0
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 212
Patch = 214
)
// Version returns a pretty printed version information string.