| 75 | } |
| 76 | |
| 77 | type taskClient struct { |
| 78 | maxSQlParam int |
| 79 | hasher hashid.Encoder |
| 80 | client *ent.Client |
| 81 | } |
| 82 | |
| 83 | func (c *taskClient) SetClient(newClient *ent.Client) TxOperator { |
| 84 | return &taskClient{client: newClient, maxSQlParam: c.maxSQlParam, hasher: c.hasher} |
nothing calls this directly
no outgoing calls
no test coverage detected