mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-06 13:27:45 +00:00
9 lines
128 B
Go
9 lines
128 B
Go
|
package domain
|
||
|
|
||
|
type SMTPConfigState int32
|
||
|
|
||
|
const (
|
||
|
SMTPConfigStateUnspecified SMTPConfigState = iota
|
||
|
SMTPConfigStateActive
|
||
|
)
|