alist/drivers/all.go

14 lines
251 B
Go
Raw Normal View History

2022-06-07 18:13:55 +08:00
package drivers
import (
_ "github.com/alist-org/alist/v3/drivers/local"
2022-08-30 21:52:06 +08:00
_ "github.com/alist-org/alist/v3/drivers/onedrive"
2022-07-19 19:55:54 +08:00
_ "github.com/alist-org/alist/v3/drivers/virtual"
2022-06-07 18:13:55 +08:00
)
// All do nothing,just for import
// same as _ import
func All() {
}