blob: 5fca3cf15db297e55f44f9ce396c5127105a6819 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import ws from './socket.js';
export default {
msg: {
send: {
helloWorld: () => {
ws.send(JSON.stringify({res: 'OK'}));
}
},
handle: {
helloWorld: msg => {
console.log(msg);
},
},
},
};
|