Remove deadcode

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2026-03-13 16:50:35 +01:00
parent 7fd4221199
commit ef76a8d2e1
76 changed files with 137 additions and 4424 deletions

View File

@@ -107,27 +107,3 @@ func NotEquals(key string, values ...string) Condition {
}
}
// In creates an In condition.
func In(key string, values ...string) Condition {
return Condition{
Operator: ConditionIn,
Key: key,
Values: values,
}
}
// NotIn creates a NotIn condition.
func NotIn(key string, values ...string) Condition {
return Condition{
Operator: ConditionNotIn,
Key: key,
Values: values,
}
}
// ForEntityType creates a resource pattern for a specific entity type.
func ForEntityType(entityType uint16) ResourcePattern {
return ResourcePattern{
EntityType: &entityType,
}
}