-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
We can create a S3Store
(or another name) like FileSystemStore
in the saver.go file.
like,
package baraka
type S3Store struct {
// specific settings
}
func NewS3Store(/* specific settings */) S3Store {
return S3Store{
// specific settings
}
}
func (s S3Store) Save(path string, filename string, part *Part) error {
// specific things to upload part's bytes to the s3
}
so, we can easily upload the files to the s3 with this implementation.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed