14 lines
358 B
Go
14 lines
358 B
Go
|
|
package config
|
||
|
|
|
||
|
|
// WebRTCConfig WebRTC ICE 服务器配置
|
||
|
|
type WebRTCConfig struct {
|
||
|
|
ICEServers []ICEServerConfig `mapstructure:"ice_servers"`
|
||
|
|
}
|
||
|
|
|
||
|
|
// ICEServerConfig ICE 服务器配置
|
||
|
|
type ICEServerConfig struct {
|
||
|
|
URLs []string `mapstructure:"urls"`
|
||
|
|
Username string `mapstructure:"username"`
|
||
|
|
Credential string `mapstructure:"credential"`
|
||
|
|
}
|