diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-10-09 02:02:34 -0700 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-10-09 02:02:34 -0700 |
commit | 83274d88f4446ffe9e5d63d41561eb775fea4c7e (patch) | |
tree | be5f66d2e650eda2167dadee1820c75f747e6bd6 /cmd | |
parent | ed14dff0ee6f53afd95550140ee32e7aa76a0441 (diff) |
updating import paths
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/ponzu/main.go (renamed from cmd/cms/main.go) | 6 | ||||
-rw-r--r-- | cmd/ponzu/options.go (renamed from cmd/cms/options.go) | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cmd/cms/main.go b/cmd/ponzu/main.go index c2f1bf1..5043753 100644 --- a/cmd/cms/main.go +++ b/cmd/ponzu/main.go @@ -7,9 +7,9 @@ import ( "net/http" "os" - "github.com/nilslice/cms/system/admin" - "github.com/nilslice/cms/system/api" - "github.com/nilslice/cms/system/db" + "github.com/bosssauce/ponzu/system/admin" + "github.com/bosssauce/ponzu/system/api" + "github.com/bosssauce/ponzu/system/db" ) var usage = ` diff --git a/cmd/cms/options.go b/cmd/ponzu/options.go index 94c809f..e893753 100644 --- a/cmd/cms/options.go +++ b/cmd/ponzu/options.go @@ -57,7 +57,7 @@ package content import ( "fmt" - "github.com/nilslice/cms/management/editor" + "github.com/bosssauce/ponzu/management/editor" ) // {{ .name }} is the generic content struct |