(data)
| 52 | # initial socket |
| 53 | @socketio.on('socket_connect') |
| 54 | def test_connect(data): |
| 55 | print("Socket connected :: ", data) |
| 56 | emit_agent("socket_response", {"data": "Server Connected"}) |
| 57 | |
| 58 | |
| 59 | @app.route("/api/data", methods=["GET"]) |
nothing calls this directly
no test coverage detected