Operator defines the interface for CRUD operations.
| 30 | |
| 31 | // Operator defines the interface for CRUD operations. |
| 32 | type Operator interface { |
| 33 | Exec(resultPtr interface{}) result.Result[any] |
| 34 | } |
| 35 | |
| 36 | // getOperator returns the Operator for the given operation name. |
| 37 | func getOperator(operate string) Operator { |