BareRTC/pkg/messages.go

13 lines
280 B
Go

package barertc
type Message struct {
Action string `json:"action,omitempty"`
Username string `json:"username"`
Message string `json:"message"`
}
const (
ActionLogin = "login" // post the username to backend
ActionMessage = "message" // post a message to the room
)