mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
9 lines
128 B
Go
9 lines
128 B
Go
|
package domain
|
||
|
|
||
|
type SMTPConfigState int32
|
||
|
|
||
|
const (
|
||
|
SMTPConfigStateUnspecified SMTPConfigState = iota
|
||
|
SMTPConfigStateActive
|
||
|
)
|