cloudflare/cloudflared

Public

mirrored from https://github.com/cloudflare/cloudflaredAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2020.12.0

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

awsuploader/uploader.go

7lines · modepreview

package awsuploader

// Uploader the functions required to upload to a bucket
type Uploader interface {
	//Upload a file to the bucket
	Upload(string) error
}