| 243 | } |
| 244 | |
| 245 | type fileClient struct { |
| 246 | maxSQlParam int |
| 247 | client *ent.Client |
| 248 | hasher hashid.Encoder |
| 249 | } |
| 250 | |
| 251 | func (c *fileClient) SetClient(newClient *ent.Client) TxOperator { |
| 252 | return &fileClient{client: newClient, maxSQlParam: c.maxSQlParam, hasher: c.hasher} |
nothing calls this directly
no outgoing calls
no test coverage detected