mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 10:22:50 +08:00
16 lines
267 B
Go
16 lines
267 B
Go
package config
|
|
|
|
type _ProviderConfig struct {
|
|
Priority []string
|
|
LocalDir string
|
|
}
|
|
|
|
func (c *_ProviderConfig) Name() string {
|
|
return "Provider"
|
|
}
|
|
|
|
var Provider = &_ProviderConfig{
|
|
Priority: []string{"local", "netease", "kuwo", "bilibili"},
|
|
LocalDir: "./music",
|
|
}
|