alist/drivers/all.go

16 lines
356 B
Go
Raw Normal View History

2022-06-07 10:13:55 +00:00
package drivers
import (
2022-08-31 12:46:19 +00:00
_ "github.com/alist-org/alist/v3/drivers/aliyundrive"
2022-06-07 10:13:55 +00:00
_ "github.com/alist-org/alist/v3/drivers/local"
2022-08-30 13:52:06 +00:00
_ "github.com/alist-org/alist/v3/drivers/onedrive"
2022-08-31 09:32:57 +00:00
_ "github.com/alist-org/alist/v3/drivers/pikpak"
2022-07-19 11:55:54 +00:00
_ "github.com/alist-org/alist/v3/drivers/virtual"
2022-06-07 10:13:55 +00:00
)
// All do nothing,just for import
// same as _ import
func All() {
}