mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
1305c14e49
* feat: handle instanceID in projections * rename functions * fix key lock * fix import
12 lines
153 B
Go
12 lines
153 B
Go
package models
|
|
|
|
type Operation int32
|
|
|
|
const (
|
|
Operation_Equals Operation = 1 + iota
|
|
Operation_Greater
|
|
Operation_Less
|
|
Operation_In
|
|
Operation_NotIn
|
|
)
|