Files
AynaLivePlayer/config/config_provider.go
2022-07-07 20:30:12 -07:00

16 lines
285 B
Go

package config
type _ProviderConfig struct {
Priority []string
LocalDir string
}
func (c *_ProviderConfig) Name() string {
return "Provider"
}
var Provider = &_ProviderConfig{
Priority: []string{"netease", "kuwo", "bilibili", "local", "bilibili-video"},
LocalDir: "./music",
}