Files
AynaLivePlayer/config/config_provider.go
2022-07-02 10:09:19 -07:00

16 lines
276 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", "bilibili-video"},
LocalDir: "./music",
}