cloudflare/cloudflared

Public

mirrored fromhttps://github.com/cloudflare/cloudflaredAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2020.6.5

Branches

Tags

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

Clone

HTTPS

Download ZIP

awsuploader/uploader.go

7lines · modecode

1package awsuploader
2
3// Uploader the functions required to upload to a bucket
4type Uploader interface {
5 //Upload a file to the bucket
6 Upload(string) error
7}
8