🔨 refactor driver: native

This commit is contained in:
微凉
2021-11-27 20:07:32 +08:00
parent eb21b87020
commit e76fc3e616
4 changed files with 167 additions and 141 deletions

9
drivers/native/native.go Normal file
View File

@ -0,0 +1,9 @@
package native
import (
"github.com/Xhofe/alist/drivers"
)
func init() {
drivers.RegisterDriver("Native", &Native{})
}