mirror of
https://github.com/bluenviron/mediamtx
synced 2025-03-02 10:30:38 +00:00
9 lines
189 B
Go
9 lines
189 B
Go
|
package conf
|
||
|
|
||
|
// WebRTCICEServer is a WebRTC ICE Server.
|
||
|
type WebRTCICEServer struct {
|
||
|
URL string `json:"url"`
|
||
|
Username string `json:"username"`
|
||
|
Password string `json:"password"`
|
||
|
}
|