summaryrefslogtreecommitdiff
path: root/plugins/app/app.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-11-02 12:12:11 +0300
committerGitHub <[email protected]>2020-11-02 12:12:11 +0300
commitedc45b3e24afdb5e56e74ffbbbd50e0e3b04922b (patch)
treec772690235392b8393117f2976b7aeb9210f3d49 /plugins/app/app.go
parent0622706128f8d9ac381dee49aa4a74fe9b7904b5 (diff)
parentba39499332aee7af9d237774a2b9e786a04f7736 (diff)
Merge pull request #380 from spiral/feature/switch_to_spiral_errors
Switch from Endure errors to the Spiral errors package
Diffstat (limited to 'plugins/app/app.go')
-rw-r--r--plugins/app/app.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/app/app.go b/plugins/app/app.go
index 9301e38f..312e5bc6 100644
--- a/plugins/app/app.go
+++ b/plugins/app/app.go
@@ -3,12 +3,13 @@ package app
import (
"context"
"fmt"
- "go.uber.org/zap"
"os"
"os/exec"
"strings"
- "github.com/spiral/endure/errors"
+ "go.uber.org/zap"
+
+ "github.com/spiral/errors"
"github.com/spiral/roadrunner/v2"
"github.com/spiral/roadrunner/v2/plugins/config"
"github.com/spiral/roadrunner/v2/util"