Client is a Git LFS client to communicate with a LFS source API.
| 13 | |
| 14 | // Client is a Git LFS client to communicate with a LFS source API. |
| 15 | type Client interface { |
| 16 | Download(ctx context.Context, objects []Pointer, callback DownloadCallback) error |
| 17 | Upload(ctx context.Context, objects []Pointer, callback UploadCallback) error |
| 18 | } |
| 19 | |
| 20 | // NewClient returns a new Git LFS client. |
| 21 | func NewClient(e Endpoint) Client { |
no outgoing calls
no test coverage detected