1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-21 20:07:04 +00:00
Gerasimos (Makis) Maropoulos
2017-01-27 14:25:48 +02:00
parent 4a903886e8
commit 73b8396cd6
3 changed files with 40 additions and 6 deletions

View File

@@ -9,11 +9,11 @@ import (
// conversionals
const (
// All is the string which the Emmiter use to send a message to all
// All is the string which the Emitter use to send a message to all
All = websocket.All
// NotMe is the string which the Emmiter use to send a message to all except this websocket.Connection
// NotMe is the string which the Emitter use to send a message to all except this websocket.Connection
NotMe = websocket.NotMe
// Broadcast is the string which the Emmiter use to send a message to all except this websocket.Connection, same as 'NotMe'
// Broadcast is the string which the Emitter use to send a message to all except this websocket.Connection, same as 'NotMe'
Broadcast = websocket.Broadcast
)