Files
OpenList/drivers/native/native.go

10 lines
125 B
Go
Raw Normal View History

2021-11-27 20:07:32 +08:00
package native
import (
"github.com/Xhofe/alist/drivers"
)
func init() {
2021-11-27 20:20:14 +08:00
drivers.RegisterDriver(driverName, &Native{})
2021-11-27 20:07:32 +08:00
}