This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
backend/fstorage/interface.go

9 lines
137 B
Go
Raw Normal View History

2021-05-02 07:15:10 +00:00
package fstorage
2021-02-28 14:01:30 +00:00
import "io"
type FileStorage interface {
Put(file io.Reader, filename string) error
Remove(filename string) error
2021-02-28 14:01:30 +00:00
}