mirror of
https://github.com/AlistGo/alist.git
synced 2025-05-07 07:12:31 +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()
|
|
}
|
|
}
|