chore: set default root folder in driver config

This commit is contained in:
Noah Hsu
2022-07-19 17:07:12 +08:00
parent 184b9d1e6c
commit fe94016289
4 changed files with 20 additions and 15 deletions

View File

@ -10,10 +10,11 @@ type Addition struct {
}
var config = driver.Config{
Name: "Local",
OnlyLocal: true,
LocalSort: true,
NoCache: true,
Name: "Local",
OnlyLocal: true,
LocalSort: true,
NoCache: true,
DefaultRoot: "/",
}
func New() driver.Driver {