little bit of progress
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-09-21 14:44:29 -07:00
parent 699dc378a9
commit da09de0293
4 changed files with 49 additions and 10 deletions

View File

@@ -3,7 +3,7 @@ package main
import (
"os"
"git.eeqj.de/sneak/historyposter/process"
"git.eeqj.de/sneak/historyposter/hp"
)
// these are filled in at link-time by the build scripts
@@ -15,5 +15,5 @@ var Version string
var Buildarch string
func main() {
os.Exit(process.CLIEntry(Version, Buildarch))
os.Exit(hp.CLIEntry(Version, Buildarch))
}