mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-02 19:11:44 +00:00
15 lines
182 B
Go
15 lines
182 B
Go
![]() |
package keys
|
||
|
|
||
|
type MachineKeyType int32
|
||
|
|
||
|
const (
|
||
|
MachineKeyTypeNONE = iota
|
||
|
MachineKeyTypeJSON
|
||
|
|
||
|
keyCount
|
||
|
)
|
||
|
|
||
|
func (f MachineKeyType) Valid() bool {
|
||
|
return f >= 0 && f < keyCount
|
||
|
}
|