mirror of
https://github.com/AlistGo/alist.git
synced 2025-11-25 03:15:10 +08:00
19 lines
506 B
Go
19 lines
506 B
Go
package drivers
|
|
|
|
import (
|
|
_ "github.com/alist-org/alist/v3/drivers/123"
|
|
_ "github.com/alist-org/alist/v3/drivers/aliyundrive"
|
|
_ "github.com/alist-org/alist/v3/drivers/local"
|
|
_ "github.com/alist-org/alist/v3/drivers/onedrive"
|
|
_ "github.com/alist-org/alist/v3/drivers/pikpak"
|
|
_ "github.com/alist-org/alist/v3/drivers/quark"
|
|
_ "github.com/alist-org/alist/v3/drivers/teambition"
|
|
_ "github.com/alist-org/alist/v3/drivers/virtual"
|
|
)
|
|
|
|
// All do nothing,just for import
|
|
// same as _ import
|
|
func All() {
|
|
|
|
}
|