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"` }