Nettacker/nettacker/api/helpers.py

13 lines
242 B
Python

def structure(status="", msg=""):
"""
basic JSON message structure
Args:
status: status (ok, failed)
msg: the message content
Returns:
a JSON message
"""
return {"status": status, "msg": msg}