(socket, data, escape=True, reset=True)
| 209 | |
| 210 | # Send data to client or bot |
| 211 | def send(socket, data, escape=True, reset=True): |
| 212 | if reset: |
| 213 | data += Fore.RESET |
| 214 | if escape: |
| 215 | data += '\r\n' |
| 216 | socket.send(data.encode()) |
| 217 | |
| 218 | # Send command to all bots |
| 219 | def broadcast(data): |
no outgoing calls
no test coverage detected