🔨 refactor driver: ali

This commit is contained in:
微凉
2021-11-27 19:40:36 +08:00
parent 98691b2aa8
commit f577d82242
14 changed files with 999 additions and 918 deletions

View File

@ -16,6 +16,14 @@ import (
type Native struct {
}
func (n Native) File(path string, account *model.Account) (*model.File, error) {
panic("implement me")
}
func (n Native) Files(path string, account *model.Account) ([]model.File, error) {
panic("implement me")
}
func (n Native) Preview(path string, account *model.Account) (interface{}, error) {
return nil, fmt.Errorf("no need")
}