You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local frame = require'websocket.frame'
|
|
|
|
return {
|
|
client = require'websocket.client',
|
|
server = require'websocket.server',
|
|
CONTINUATION = frame.CONTINUATION,
|
|
TEXT = frame.TEXT,
|
|
BINARY = frame.BINARY,
|
|
CLOSE = frame.CLOSE,
|
|
PING = frame.PING,
|
|
PONG = frame.PONG
|
|
}
|
|
|