mirror of
https://github.com/cloudflare/cloudflared.git
synced 2025-05-11 02:26:35 +00:00
8 lines
159 B
Go
8 lines
159 B
Go
package awsuploader
|
|
|
|
// Uploader the functions required to upload to a bucket
|
|
type Uploader interface {
|
|
//Upload a file to the bucket
|
|
Upload(string) error
|
|
}
|