mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-10 21:42:16 +00:00
fix: move v2 pkgs (#1331)
* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
This commit is contained in:
28
internal/eventstore/v1/config.go
Normal file
28
internal/eventstore/v1/config.go
Normal file
@@ -0,0 +1,28 @@
|
||||
package v1
|
||||
|
||||
import (
|
||||
"github.com/caos/zitadel/internal/cache/config"
|
||||
eventstore2 "github.com/caos/zitadel/internal/eventstore"
|
||||
sql_v2 "github.com/caos/zitadel/internal/eventstore/repository/sql"
|
||||
"github.com/caos/zitadel/internal/eventstore/v1/internal/repository/sql"
|
||||
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
Repository sql.Config
|
||||
ServiceName string
|
||||
Cache *config.CacheConfig
|
||||
}
|
||||
|
||||
func Start(conf Config) (Eventstore, error) {
|
||||
repo, sqlClient, err := sql.Start(conf.Repository)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &eventstore{
|
||||
repo: repo,
|
||||
aggregateCreator: models.NewAggregateCreator(conf.ServiceName),
|
||||
esV2: eventstore2.NewEventstore(sql_v2.NewCRDB(sqlClient)),
|
||||
}, nil
|
||||
}
|
||||
Reference in New Issue
Block a user