mirror of
https://github.com/AlistGo/alist.git
synced 2025-11-25 11:29:45 +08:00
13 lines
199 B
Go
13 lines
199 B
Go
package drivers
|
|
|
|
import (
|
|
_ "github.com/alist-org/alist/v3/drivers/local"
|
|
_ "github.com/alist-org/alist/v3/drivers/virtual"
|
|
)
|
|
|
|
// All do nothing,just for import
|
|
// same as _ import
|
|
func All() {
|
|
|
|
}
|