diff --git a/cmd/historyposter/main.go b/cmd/historyposter/main.go index 94df5ec..a0aad8e 100644 --- a/cmd/historyposter/main.go +++ b/cmd/historyposter/main.go @@ -3,7 +3,7 @@ package main import ( "os" - "git.eeqj.de/sneak/historyposter/hp" + "git.eeqj.de/sneak/historyposter/historyposter" ) // 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(hp.CLIEntry(Version, Buildarch)) + os.Exit(historyposter.CLIEntry(Version, Buildarch)) } diff --git a/hp/detector.go b/historyposter/detector.go similarity index 99% rename from hp/detector.go rename to historyposter/detector.go index 342b3ac..4727db0 100644 --- a/hp/detector.go +++ b/historyposter/detector.go @@ -1,4 +1,4 @@ -package hp +package historyposter import ( "context" diff --git a/hp/historyposter.go b/historyposter/historyposter.go similarity index 99% rename from hp/historyposter.go rename to historyposter/historyposter.go index 630a46c..1242d54 100644 --- a/hp/historyposter.go +++ b/historyposter/historyposter.go @@ -1,4 +1,4 @@ -package hp +package historyposter import ( "context"