12 lines
372 B
Go
12 lines
372 B
Go
|
|
package config
|
||
|
|
|
||
|
|
// LiveKitConfig LiveKit SFU 配置
|
||
|
|
type LiveKitConfig struct {
|
||
|
|
Enabled bool `mapstructure:"enabled"`
|
||
|
|
URL string `mapstructure:"url"`
|
||
|
|
APIKey string `mapstructure:"api_key"`
|
||
|
|
APISecret string `mapstructure:"api_secret"`
|
||
|
|
TokenTTL int `mapstructure:"token_ttl"`
|
||
|
|
WebhookSecret string `mapstructure:"webhook_secret"`
|
||
|
|
}
|