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