diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-09-29 19:12:26 -0400 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-09-29 19:12:26 -0400 |
commit | 285281dc2ab1f4426f91bd01c9345cd7f7d6d599 (patch) | |
tree | c0877fcc00a1834d9e2410c190308ff04949a92c /cmd/cms/main.go | |
parent | 959e36c9caf34d2d59f734793a3a1034563b4938 (diff) |
switching server for dev purposes
Diffstat (limited to 'cmd/cms/main.go')
-rw-r--r-- | cmd/cms/main.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/cms/main.go b/cmd/cms/main.go index 123c65e..7c9f86a 100644 --- a/cmd/cms/main.go +++ b/cmd/cms/main.go @@ -5,7 +5,7 @@ import ( "fmt" "os" - "github.com/nilslice/cms/system/api" + "github.com/nilslice/cms/system/admin" "github.com/nilslice/cms/system/db" ) @@ -98,8 +98,8 @@ func main() { } case "serve", "s": db.Init() - // admin.Run("8080") - api.Run("8000") + admin.Run("8080") + // api.Run("8000") case "": flag.PrintDefaults() |