diff --git a/dist/monday-server b/dist/monday-server index a887508..429fcf5 100755 Binary files a/dist/monday-server and b/dist/monday-server differ diff --git a/server/go.mod b/server/go.mod index 35b13e9..afc7822 100644 --- a/server/go.mod +++ b/server/go.mod @@ -3,7 +3,7 @@ module github.com/eko/monday-app/server go 1.12 require ( - github.com/eko/monday v1.0.4 + github.com/eko/monday v1.0.6 github.com/golang/protobuf v1.3.2 google.golang.org/grpc v1.22.1 ) diff --git a/server/go.sum b/server/go.sum index 1bb9a2c..d525d7a 100644 --- a/server/go.sum +++ b/server/go.sum @@ -19,6 +19,10 @@ github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96 h1:cenwrSVm+Z7QL github.com/docker/spdystream v0.0.0-20160310174837-449fdfce4d96/go.mod h1:Qh8CwZgvJUkLughtfhJv5dyTYa91l1fOUCrgjqmcifM= github.com/eko/monday v1.0.4 h1:to+Kb76IhSOKcMToDPAS0PzUEmFEpdZxuXIc7t3LXG4= github.com/eko/monday v1.0.4/go.mod h1:Magfa5FdziZRdiaTrEUxqTfed6CR0FXJ1eQNhdzyXZk= +github.com/eko/monday v1.0.5 h1:QVad28swNPfrj5TTo0vjFowSDvsfrsqtSDqKw7ILbt0= +github.com/eko/monday v1.0.5/go.mod h1:Magfa5FdziZRdiaTrEUxqTfed6CR0FXJ1eQNhdzyXZk= +github.com/eko/monday v1.0.6 h1:1DdiMs4lmgCuAvLMm/3G64aAvGi10GOTPbEwFFSMum0= +github.com/eko/monday v1.0.6/go.mod h1:Magfa5FdziZRdiaTrEUxqTfed6CR0FXJ1eQNhdzyXZk= github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e h1:p1yVGRW3nmb85p1Sh1ZJSDm4A4iKLS5QNbvUHMgGu/M= github.com/elazarl/goproxy v0.0.0-20170405201442-c4fc26588b6e/go.mod h1:/Zj4wYkgs4iZTTu3o/KG3Itv/qCCa8VVMlb3i9OVuzc= github.com/evanphx/json-patch v0.0.0-20190203023257-5858425f7550/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk= diff --git a/server/internal/grpc/endpoints.go b/server/internal/grpc/endpoints.go index 23ac4fa..fdac369 100644 --- a/server/internal/grpc/endpoints.go +++ b/server/internal/grpc/endpoints.go @@ -6,7 +6,7 @@ import ( "os/exec" "syscall" - serverui "../ui" + serverui "github.com/eko/monday-app/server/internal/ui" "github.com/eko/monday/pkg/config" "github.com/eko/monday/pkg/forwarder" diff --git a/server/main.go b/server/main.go index d10c951..8d00d14 100644 --- a/server/main.go +++ b/server/main.go @@ -6,7 +6,7 @@ import ( "os/signal" "syscall" - monday "./internal/grpc" + monday "github.com/eko/monday-app/server/internal/grpc" "github.com/eko/monday/pkg/config" )