mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
14 lines
180 B
Go
14 lines
180 B
Go
|
package setup
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/database"
|
||
|
)
|
||
|
|
||
|
type Config struct {
|
||
|
Database database.Config
|
||
|
}
|
||
|
|
||
|
type Steps struct {
|
||
|
S1ProjectionTable *ProjectionTable
|
||
|
}
|