mirror of
https://github.com/AlistGo/alist.git
synced 2025-04-30 01:04:04 +08:00
13 lines
161 B
Go
13 lines
161 B
Go
package data
|
|
|
|
import "github.com/alist-org/alist/v3/cmd/flags"
|
|
|
|
func InitData() {
|
|
initUser()
|
|
initSettings()
|
|
if flags.Dev {
|
|
initDevData()
|
|
initDevDo()
|
|
}
|
|
}
|