summaryrefslogtreecommitdiff
path: root/internal/cli
diff options
context:
space:
mode:
Diffstat (limited to 'internal/cli')
-rw-r--r--internal/cli/reset/command.go6
-rw-r--r--internal/cli/reset/command_test.go4
-rw-r--r--internal/cli/root.go12
-rw-r--r--internal/cli/root_test.go2
-rw-r--r--internal/cli/serve/command.go8
-rw-r--r--internal/cli/serve/command_test.go4
-rw-r--r--internal/cli/workers/command.go8
-rw-r--r--internal/cli/workers/command_test.go4
-rw-r--r--internal/cli/workers/render.go2
9 files changed, 25 insertions, 25 deletions
diff --git a/internal/cli/reset/command.go b/internal/cli/reset/command.go
index d6cf7087..1d7dd78c 100644
--- a/internal/cli/reset/command.go
+++ b/internal/cli/reset/command.go
@@ -4,13 +4,13 @@ import (
"fmt"
"sync"
- internalRpc "github.com/spiral/roadrunner-binary/v2/internal/rpc"
+ internalRpc "github.com/roadrunner-server/roadrunner/v2/internal/rpc"
"github.com/fatih/color"
"github.com/mattn/go-runewidth"
+ "github.com/roadrunner-server/config/v2"
+ "github.com/roadrunner-server/errors"
"github.com/spf13/cobra"
- "github.com/spiral/errors"
- "github.com/spiral/roadrunner-plugins/v2/config"
"github.com/vbauerster/mpb/v5"
"github.com/vbauerster/mpb/v5/decor"
)
diff --git a/internal/cli/reset/command_test.go b/internal/cli/reset/command_test.go
index 00cd046e..1983cc5c 100644
--- a/internal/cli/reset/command_test.go
+++ b/internal/cli/reset/command_test.go
@@ -3,9 +3,9 @@ package reset_test
import (
"testing"
- "github.com/spiral/roadrunner-binary/v2/internal/cli/reset"
+ "github.com/roadrunner-server/roadrunner/v2/internal/cli/reset"
- "github.com/spiral/roadrunner-plugins/v2/config"
+ "github.com/roadrunner-server/config/v2"
"github.com/stretchr/testify/assert"
)
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.
diff --git a/internal/cli/root_test.go b/internal/cli/root_test.go
index 59af9294..28e7d237 100644
--- a/internal/cli/root_test.go
+++ b/internal/cli/root_test.go
@@ -3,7 +3,7 @@ package cli_test
import (
"testing"
- "github.com/spiral/roadrunner-binary/v2/internal/cli"
+ "github.com/roadrunner-server/roadrunner/v2/internal/cli"
"github.com/spf13/cobra"
"github.com/stretchr/testify/assert"
diff --git a/internal/cli/serve/command.go b/internal/cli/serve/command.go
index 6679d795..a0ce36db 100644
--- a/internal/cli/serve/command.go
+++ b/internal/cli/serve/command.go
@@ -6,12 +6,12 @@ import (
"os/signal"
"syscall"
- "github.com/spiral/roadrunner-binary/v2/internal/container"
- "github.com/spiral/roadrunner-binary/v2/internal/meta"
+ "github.com/roadrunner-server/roadrunner/v2/internal/container"
+ "github.com/roadrunner-server/roadrunner/v2/internal/meta"
+ configImpl "github.com/roadrunner-server/config/v2"
+ "github.com/roadrunner-server/errors"
"github.com/spf13/cobra"
- "github.com/spiral/errors"
- configImpl "github.com/spiral/roadrunner-plugins/v2/config"
)
// NewCommand creates `serve` command.
diff --git a/internal/cli/serve/command_test.go b/internal/cli/serve/command_test.go
index 0e61ce83..8aef0ff7 100644
--- a/internal/cli/serve/command_test.go
+++ b/internal/cli/serve/command_test.go
@@ -3,9 +3,9 @@ package serve_test
import (
"testing"
- "github.com/spiral/roadrunner-binary/v2/internal/cli/serve"
+ "github.com/roadrunner-server/roadrunner/v2/internal/cli/serve"
- "github.com/spiral/roadrunner-plugins/v2/config"
+ "github.com/roadrunner-server/config/v2"
"github.com/stretchr/testify/assert"
)
diff --git a/internal/cli/workers/command.go b/internal/cli/workers/command.go
index 283887e4..e3f8f7e3 100644
--- a/internal/cli/workers/command.go
+++ b/internal/cli/workers/command.go
@@ -9,14 +9,14 @@ import (
"time"
"github.com/roadrunner-server/api/v2/plugins/jobs"
- internalRpc "github.com/spiral/roadrunner-binary/v2/internal/rpc"
+ internalRpc "github.com/roadrunner-server/roadrunner/v2/internal/rpc"
tm "github.com/buger/goterm"
"github.com/fatih/color"
+ "github.com/roadrunner-server/config/v2"
+ "github.com/roadrunner-server/errors"
+ "github.com/roadrunner-server/informer/v2"
"github.com/spf13/cobra"
- "github.com/spiral/errors"
- "github.com/spiral/roadrunner-plugins/v2/config"
- "github.com/spiral/roadrunner-plugins/v2/informer"
)
// NewCommand creates `workers` command.
diff --git a/internal/cli/workers/command_test.go b/internal/cli/workers/command_test.go
index e593686d..d0c92e63 100644
--- a/internal/cli/workers/command_test.go
+++ b/internal/cli/workers/command_test.go
@@ -3,9 +3,9 @@ package workers_test
import (
"testing"
- "github.com/spiral/roadrunner-binary/v2/internal/cli/workers"
+ "github.com/roadrunner-server/roadrunner/v2/internal/cli/workers"
- "github.com/spiral/roadrunner-plugins/v2/config"
+ "github.com/roadrunner-server/config/v2"
"github.com/stretchr/testify/assert"
)
diff --git a/internal/cli/workers/render.go b/internal/cli/workers/render.go
index 0bdf09b6..cf81a04e 100644
--- a/internal/cli/workers/render.go
+++ b/internal/cli/workers/render.go
@@ -9,7 +9,7 @@ import (
"github.com/fatih/color"
"github.com/olekukonko/tablewriter"
"github.com/roadrunner-server/api/v2/plugins/jobs"
- "github.com/spiral/roadrunner/v2/state/process"
+ "github.com/roadrunner-server/sdk/v2/state/process"
)
const (