mirror of
https://github.com/HChaZZY/alist.git
synced 2025-12-24 11:07:02 +08:00
feat: add root prefix before operate
This commit is contained in:
@@ -25,3 +25,15 @@ type Items struct {
|
||||
Main []Item `json:"main"`
|
||||
Additional []Item `json:"additional"`
|
||||
}
|
||||
|
||||
type IRootFolderPath interface {
|
||||
GetRootFolder() string
|
||||
}
|
||||
|
||||
type RootFolderPath struct {
|
||||
RootFolder string `json:"root_folder" help:"root folder path" default:"/"`
|
||||
}
|
||||
|
||||
func (r RootFolderPath) GetRootFolder() string {
|
||||
return r.RootFolder
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user