alist/drivers/native/native.go

10 lines
125 B
Go
Raw Normal View History

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