mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-09-20 12:46:17 +08:00
12 lines
145 B
Go
12 lines
145 B
Go
package data
|
|
|
|
import "github.com/alist-org/alist/v3/cmd/args"
|
|
|
|
func InitData() {
|
|
initUser()
|
|
initSettings()
|
|
if args.Dev {
|
|
initDevData()
|
|
}
|
|
}
|