basic JSON message structure Args: status: status (ok, failed) msg: the message content Returns: a JSON message
(status="", msg="")
| 1 | def structure(status="", msg=""): |
| 2 | """ |
| 3 | basic JSON message structure |
| 4 | |
| 5 | Args: |
| 6 | status: status (ok, failed) |
| 7 | msg: the message content |
| 8 | |
| 9 | Returns: |
| 10 | a JSON message |
| 11 | """ |
| 12 | return {"status": status, "msg": msg} |
no outgoing calls
no test coverage detected