Files
AynaLivePlayer/pkg/config/config_experimental.go
2024-11-12 16:59:36 -08:00

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,
}