Fix import paths (corteza-server => corteza/server)

This commit is contained in:
Denis Arh
2022-11-16 16:12:58 +01:00
parent 627da636b6
commit 29eacc9f65
1091 changed files with 3561 additions and 3563 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"strings"
"text/template"
"github.com/cortezaproject/corteza-server/pkg/handle"
"github.com/cortezaproject/corteza/server/pkg/handle"
"gopkg.in/yaml.v3"
)
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"strings"
"text/template"
. "github.com/cortezaproject/corteza-server/pkg/y7s"
. "github.com/cortezaproject/corteza/server/pkg/y7s"
"gopkg.in/yaml.v3"
)
+4 -4
View File
@@ -7,7 +7,7 @@ import (
"strings"
"text/template"
"github.com/cortezaproject/corteza-server/pkg/slice"
"github.com/cortezaproject/corteza/server/pkg/slice"
"gopkg.in/yaml.v3"
)
@@ -68,9 +68,9 @@ type (
func procEvents(mm ...string) (dd []*eventsDef, err error) {
// <app>/service/event/events.yaml
const (
importTypePathTpl = "github.com/cortezaproject/corteza-server/%s/types"
importAutoPathTpl = "github.com/cortezaproject/corteza-server/%s/automation"
importAuthPath = "github.com/cortezaproject/corteza-server/pkg/auth"
importTypePathTpl = "github.com/cortezaproject/corteza/server/%s/types"
importAutoPathTpl = "github.com/cortezaproject/corteza/server/%s/automation"
importAuthPath = "github.com/cortezaproject/corteza/server/pkg/auth"
)
dd = make([]*eventsDef, 0)