mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
16 lines
203 B
Go
16 lines
203 B
Go
|
package webrtc
|
||
|
|
||
|
type message struct {
|
||
|
Event string `json:"event"`
|
||
|
}
|
||
|
|
||
|
type messageIdentityProvide struct {
|
||
|
message
|
||
|
ID string `json:"id"`
|
||
|
}
|
||
|
|
||
|
type messageSDP struct {
|
||
|
message
|
||
|
SDP string `json:"sdp"`
|
||
|
}
|