Files
go-admin/common/file_store/interface.go
T
2020-11-12 20:18:53 +08:00

6 lines
122 B
Go

package file_store
type FileStoreType interface {
Setup() error
UpLoad(yourObjectName string, localFile string) error
}