summaryrefslogtreecommitdiff
path: root/internal/cli/reset
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2022-01-15 15:52:23 +0300
committerValery Piashchynski <[email protected]>2022-01-15 15:52:23 +0300
commit65541b95a6ebc72aef818f1d2e4b0dc721f59e22 (patch)
treed9dbe5577c72810fadf1f2bc1e5fcee889fda983 /internal/cli/reset
parent5254c8eb27311e2a8a53a4c90c3829cf1238c563 (diff)
initial commit
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'internal/cli/reset')
-rw-r--r--internal/cli/reset/command.go6
-rw-r--r--internal/cli/reset/command_test.go4
2 files changed, 5 insertions, 5 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"
)