add system config (#71)

This commit is contained in:
Fabi
2020-04-23 10:43:39 +02:00
committed by GitHub
parent 8464cfa4fe
commit ff11cdba40
8 changed files with 42 additions and 30 deletions

View File

@@ -0,0 +1,12 @@
package systemdefaults
import "github.com/caos/zitadel/internal/crypto"
type SystemDefaults struct {
SecretGenerator SecretGenerator
}
type SecretGenerator struct {
PasswordSaltCost int
ClientSecretGenerator crypto.GeneratorConfig
}