chore(v2): move to new org (#3499)

* chore: move to new org

* logging

* fix: org rename caos -> zitadel

Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
This commit is contained in:
Florian Forster
2022-04-27 01:01:45 +02:00
committed by GitHub
parent b867eff84c
commit fa9f581d56
1284 changed files with 5073 additions and 5040 deletions

View File

@@ -6,9 +6,9 @@ import (
"os"
"text/template"
"github.com/caos/logging"
"github.com/zitadel/logging"
"github.com/caos/zitadel/internal/config"
"github.com/zitadel/zitadel/internal/config"
)
var (
@@ -132,7 +132,7 @@ func GenerateAssetHandler(configFilePath, handlerPrefix string, authz, router, d
const authzTmpl = `package {{.GoPkgName}}
import (
"github.com/caos/zitadel/internal/api/authz"
"github.com/zitadel/zitadel/internal/api/authz"
)
/**
@@ -167,9 +167,9 @@ const routerTmpl = `package {{.GoPkgName}}
import (
"github.com/gorilla/mux"
http_mw "github.com/caos/zitadel/internal/api/http/middleware"
"github.com/caos/zitadel/internal/command"
"github.com/caos/zitadel/internal/static"
http_mw "github.com/zitadel/zitadel/internal/api/http/middleware"
"github.com/zitadel/zitadel/internal/command"
"github.com/zitadel/zitadel/internal/static"
)
type {{.Name}} interface {