This commit is contained in:
2020-09-21 13:04:20 -07:00
commit 75b0374c93
6 changed files with 228 additions and 0 deletions

19
cmd/historyposter/main.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"os"
"git.eeqj.de/sneak/historyposter/process"
)
// these are filled in at link-time by the build scripts
// Version is the git version of the app
var Version string
// Buildarch contains the architecture it is compiled for
var Buildarch string
func main() {
os.Exit(process.CLIEntry(Version, Buildarch))
}