zitadel/internal/eventstore/v1/config.go
Livio Amstutz 8dcbbc87ca
fix: update config to commands (and queries) (#1342)
* fix: adaot config to commands (and queries)

* remove dependency on vv2 in v1

* add queries user to operator

* set password for queries on tests

* set password for queries on tests

* fix config
2021-02-24 11:17:39 +01:00

24 lines
422 B
Go

package v1
import (
"github.com/caos/zitadel/internal/cache/config"
"github.com/caos/zitadel/internal/eventstore/v1/internal/repository/sql"
)
type Config struct {
Repository sql.Config
ServiceName string
Cache *config.CacheConfig
}
func Start(conf Config) (Eventstore, error) {
repo, _, err := sql.Start(conf.Repository)
if err != nil {
return nil, err
}
return &eventstore{
repo: repo,
}, nil
}