SetClient sets the client for the setting client
(newClient *ent.Client)
| 40 | |
| 41 | // SetClient sets the client for the setting client |
| 42 | func (c *settingClient) SetClient(newClient *ent.Client) TxOperator { |
| 43 | return &settingClient{client: newClient, kv: c.kv} |
| 44 | } |
| 45 | |
| 46 | // GetClient gets the client for the setting client |
| 47 | func (c *settingClient) GetClient() *ent.Client { |
nothing calls this directly
no outgoing calls
no test coverage detected