goldgorilla/models/config.go

11 lines
307 B
Go
Raw Normal View History

package models
2023-08-24 13:40:18 +00:00
import "github.com/pion/webrtc/v3"
type ConfigModel struct {
2023-08-24 13:40:18 +00:00
ServiceAddress string `json:"serviceAddress"`
LogjamBaseUrl string `json:"logjamBaseUrl"`
TargetRoom string `json:"targetRoom"`
ICEServers []webrtc.ICEServer `json:"iceServers"`
}