uploader.go 159 B

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