mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-11 20:58:13 +08:00
16 lines
285 B
Go
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",
|
|
}
|