blob: 24608b68b579947b850bf8abbbeb6c30b7e394e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
diff --git a/Gopkg.toml b/Gopkg.toml
index a0e9380..ee3699f 100644
--- a/Gopkg.toml
+++ b/Gopkg.toml
@@ -28,10 +28,6 @@
name = "github.com/fsnotify/fsnotify"
version = "1.4.2"
-[[constraint]]
- name = "github.com/go-siris/siris"
- version = "7.4.0"
-
[[constraint]]
name = "github.com/labstack/echo"
version = "3.2.5"
diff --git a/realize/cli.go b/realize/cli.go
index 81ed142..25d6ee5 100644
--- a/realize/cli.go
+++ b/realize/cli.go
@@ -3,7 +3,7 @@ package realize
import (
"fmt"
"github.com/fsnotify/fsnotify"
- "github.com/go-siris/siris/core/errors"
+ "errors"
"go/build"
"log"
"os"
@@ -18,7 +18,7 @@ var (
// RPrefix tool name
RPrefix = "realize"
// RVersion current version
- RVersion = "2.1"
+ RVersion = "2.0.2"
// RExt file extension
RExt = ".yaml"
// RFile config file name
diff --git a/realize/server.go b/realize/server.go
index 250f118..cbc3e5f 100644
--- a/realize/server.go
+++ b/realize/server.go
@@ -14,7 +14,7 @@ import (
"os/exec"
"runtime"
"strconv"
- "github.com/go-siris/siris/core/errors"
+ "errors"
)
// Dafault host and port
|