mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
7 lines
123 B
Go
7 lines
123 B
Go
package file_store
|
|
|
|
type FileStoreType interface {
|
|
Setup() error
|
|
UpLoad(yourObjectName string, localFile string) error
|
|
}
|