mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2026-04-03 01:45:23 +08:00
15 lines
213 B
Go
15 lines
213 B
Go
package config
|
|
|
|
type _ExperimentalConfig struct {
|
|
BaseConfig
|
|
Headless bool
|
|
}
|
|
|
|
func (c *_ExperimentalConfig) Name() string {
|
|
return "Experimental"
|
|
}
|
|
|
|
var Experimental = &_ExperimentalConfig{
|
|
Headless: false,
|
|
}
|