From 8fc5a8b018c3bfea4dd496e56e49e62e88a8c5d4 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 22 Sep 2020 07:28:50 -0700 Subject: [PATCH] rename hp dir --- cmd/historyposter/main.go | 4 ++-- {hp => historyposter}/detector.go | 2 +- {hp => historyposter}/historyposter.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename {hp => historyposter}/detector.go (99%) rename {hp => historyposter}/historyposter.go (99%) 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"