2023-07-26 21:15:39 +00:00
|
|
|
package models
|
|
|
|
|
2023-08-24 13:40:18 +00:00
|
|
|
import "github.com/pion/webrtc/v3"
|
|
|
|
|
2023-07-26 21:15:39 +00:00
|
|
|
type ConfigModel struct {
|
2023-09-19 18:09:09 +00:00
|
|
|
ServiceAddress string `json:"serviceAddress"`
|
|
|
|
LogjamBaseUrl string `json:"logjamBaseUrl"`
|
|
|
|
TargetRoom string `json:"targetRoom"`
|
|
|
|
ICETCPMUXListenPort uint `json:"ice_tcpmux_listenPort"`
|
|
|
|
ICEServers []webrtc.ICEServer `json:"iceServers"`
|
2023-07-26 21:15:39 +00:00
|
|
|
}
|