| 26 | } |
| 27 | |
| 28 | type DynamicClient struct { |
| 29 | profession string |
| 30 | driver string |
| 31 | client admin_client.Client |
| 32 | } |
| 33 | |
| 34 | func (d *DynamicClient) Version(ctx context.Context, resourceId string) (string, error) { |
| 35 | worker, err := d.client.Get(ctx, genWorkerID(resourceId, d.profession)) |
nothing calls this directly
no outgoing calls
no test coverage detected