mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
9 lines
282 B
Go
9 lines
282 B
Go
package service
|
|
|
|
// BuildGate creates a TaskMutationGate with standard field validators registered.
|
|
// Call SetStore() on the returned gate after store initialization.
|
|
func BuildGate() *TaskMutationGate {
|
|
gate := NewTaskMutationGate()
|
|
RegisterFieldValidators(gate)
|
|
return gate
|
|
}
|