mirror of
https://github.com/harshabose/client.git
synced 2025-09-27 03:35:55 +08:00
18 lines
375 B
Go
18 lines
375 B
Go
package client
|
|
|
|
const (
|
|
FieldOffer = "offer"
|
|
FieldAnswer = "answer"
|
|
FieldSDP = "sdp"
|
|
FieldUpdatedAt = "updated-at"
|
|
FieldStatus = "status"
|
|
FieldStatusPending = "pending"
|
|
FieldStatusConnected = "connected"
|
|
FieldCreatedAt = "created-at"
|
|
)
|
|
|
|
type BaseSignal interface {
|
|
Connect(string, string) error
|
|
Close() error
|
|
}
|