diff --git a/app/main.go b/app/main.go index fff8e75..397fe9b 100644 --- a/app/main.go +++ b/app/main.go @@ -2,7 +2,7 @@ package app import ( "fmt" - w "github.com/tockins/realize/cli" + w "github.com/tockins/realize/watcher" c "github.com/tockins/realize/config" s "github.com/tockins/realize/server" "gopkg.in/urfave/cli.v2" diff --git a/server/main.go b/server/main.go index af6ca6a..e9db68c 100644 --- a/server/main.go +++ b/server/main.go @@ -5,7 +5,7 @@ import ( "github.com/labstack/echo" "github.com/labstack/echo/engine/standard" "github.com/labstack/echo/middleware" - c "github.com/tockins/realize/cli" + c "github.com/tockins/realize/watcher" "golang.org/x/net/websocket" "log" "net/http" diff --git a/cli/cmd.go b/watcher/cmd.go similarity index 100% rename from cli/cmd.go rename to watcher/cmd.go diff --git a/cli/exec.go b/watcher/exec.go similarity index 100% rename from cli/exec.go rename to watcher/exec.go diff --git a/cli/main.go b/watcher/main.go similarity index 100% rename from cli/main.go rename to watcher/main.go diff --git a/cli/utils.go b/watcher/utils.go similarity index 100% rename from cli/utils.go rename to watcher/utils.go diff --git a/cli/watcher.go b/watcher/watcher.go similarity index 100% rename from cli/watcher.go rename to watcher/watcher.go