mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 07:47:32 +00:00
chore: move the go code into a subfolder
This commit is contained in:
19
apps/api/internal/domain/search_method.go
Normal file
19
apps/api/internal/domain/search_method.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package domain
|
||||
|
||||
type SearchMethod int32
|
||||
|
||||
const (
|
||||
SearchMethodEquals SearchMethod = iota
|
||||
SearchMethodStartsWith
|
||||
SearchMethodContains
|
||||
SearchMethodEqualsIgnoreCase
|
||||
SearchMethodStartsWithIgnoreCase
|
||||
SearchMethodContainsIgnoreCase
|
||||
SearchMethodNotEquals
|
||||
SearchMethodGreaterThan
|
||||
SearchMethodLessThan
|
||||
SearchMethodIsOneOf
|
||||
SearchMethodListContains
|
||||
SearchMethodEndsWith
|
||||
SearchMethodEndsWithIgnoreCase
|
||||
)
|
Reference in New Issue
Block a user