diff options
author | Valery Piashchynski <[email protected]> | 2022-01-15 15:52:23 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-01-15 15:52:23 +0300 |
commit | 65541b95a6ebc72aef818f1d2e4b0dc721f59e22 (patch) | |
tree | d9dbe5577c72810fadf1f2bc1e5fcee889fda983 /internal/cli/root.go | |
parent | 5254c8eb27311e2a8a53a4c90c3829cf1238c563 (diff) |
initial commit
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'internal/cli/root.go')
-rw-r--r-- | internal/cli/root.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/internal/cli/root.go b/internal/cli/root.go index 8572bdc6..29fd14b8 100644 --- a/internal/cli/root.go +++ b/internal/cli/root.go @@ -6,15 +6,15 @@ import ( "path/filepath" "runtime" - "github.com/spiral/roadrunner-binary/v2/internal/cli/reset" - "github.com/spiral/roadrunner-binary/v2/internal/cli/serve" - "github.com/spiral/roadrunner-binary/v2/internal/cli/workers" - dbg "github.com/spiral/roadrunner-binary/v2/internal/debug" - "github.com/spiral/roadrunner-binary/v2/internal/meta" + "github.com/roadrunner-server/roadrunner/v2/internal/cli/reset" + "github.com/roadrunner-server/roadrunner/v2/internal/cli/serve" + "github.com/roadrunner-server/roadrunner/v2/internal/cli/workers" + dbg "github.com/roadrunner-server/roadrunner/v2/internal/debug" + "github.com/roadrunner-server/roadrunner/v2/internal/meta" "github.com/joho/godotenv" + "github.com/roadrunner-server/config/v2" "github.com/spf13/cobra" - "github.com/spiral/roadrunner-plugins/v2/config" ) // NewCommand creates root command. |