Fix import paths (corteza-server => corteza/server)
This commit is contained in:
@@ -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"
|
||||
)
|
||||
|
||||
|
||||
@@ -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"
|
||||
)
|
||||
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user