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

@@ -1,11 +1,12 @@
package bigcache
import (
a_cache "github.com/allegro/bigcache"
"github.com/caos/zitadel/internal/errors"
es_models "github.com/caos/zitadel/internal/eventstore/v1/models"
"reflect"
"testing"
a_cache "github.com/allegro/bigcache"
"github.com/zitadel/zitadel/internal/errors"
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
)
type TestStruct struct {

View File

@@ -6,8 +6,8 @@ import (
"reflect"
a_cache "github.com/allegro/bigcache"
"github.com/caos/logging"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/logging"
"github.com/zitadel/zitadel/internal/errors"
)
type Bigcache struct {

View File

@@ -1,8 +1,9 @@
package bigcache
import (
"github.com/caos/zitadel/internal/cache"
"time"
"github.com/zitadel/zitadel/internal/cache"
)
type Config struct {

View File

@@ -3,10 +3,10 @@ package config
import (
"encoding/json"
"github.com/caos/zitadel/internal/cache"
"github.com/caos/zitadel/internal/cache/bigcache"
"github.com/caos/zitadel/internal/cache/fastcache"
"github.com/caos/zitadel/internal/errors"
"github.com/zitadel/zitadel/internal/cache"
"github.com/zitadel/zitadel/internal/cache/bigcache"
"github.com/zitadel/zitadel/internal/cache/fastcache"
"github.com/zitadel/zitadel/internal/errors"
)
type CacheConfig struct {

View File

@@ -1,6 +1,6 @@
package fastcache
import "github.com/caos/zitadel/internal/cache"
import "github.com/zitadel/zitadel/internal/cache"
type Config struct {
MaxCacheSizeInByte int

View File

@@ -3,9 +3,10 @@ package fastcache
import (
"bytes"
"encoding/gob"
"github.com/caos/zitadel/internal/errors"
"reflect"
"github.com/zitadel/zitadel/internal/errors"
"github.com/VictoriaMetrics/fastcache"
)

View File

@@ -1,11 +1,12 @@
package fastcache
import (
"github.com/VictoriaMetrics/fastcache"
"github.com/caos/zitadel/internal/errors"
es_models "github.com/caos/zitadel/internal/eventstore/v1/models"
"reflect"
"testing"
"github.com/VictoriaMetrics/fastcache"
"github.com/zitadel/zitadel/internal/errors"
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
)
type TestStruct struct {

View File

@@ -1,3 +1,3 @@
package cache
//go:generate mockgen -package mock -destination ./mock/cache.mock.go github.com/caos/zitadel/internal/cache Cache
//go:generate mockgen -package mock -destination ./mock/cache.mock.go github.com/zitadel/zitadel/internal/cache Cache

View File

@@ -1,5 +1,5 @@
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/caos/zitadel/internal/cache (interfaces: Cache)
// Source: github.com/zitadel/zitadel/internal/cache (interfaces: Cache)
// Package mock is a generated GoMock package.
package mock