mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 18:32:50 +08:00
12 lines
204 B
Go
12 lines
204 B
Go
package config
|
|
|
|
type _LiveRoomConfig struct {
|
|
History []string
|
|
}
|
|
|
|
func (c *_LiveRoomConfig) Name() string {
|
|
return "LiveRoom"
|
|
}
|
|
|
|
var LiveRoom = &_LiveRoomConfig{History: []string{"9076804", "3819533"}}
|