tiki/service/build.go
2026-04-07 23:51:19 -04:00

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
}