aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib/response.py
blob: 866d5f24c284e948bf8bb96c2db9748ba2034f34 (plain)
  1. #!/usr/bin/python3
  2. class Response(object):
  3. def __init__(self, *args):
  4. self.args = args
  5. def __str__(self):
  6. return " ".join(map(str, self.args))
  7. class OkResponse(Response):
  8. pass
  9. class NotifyResponse(Response):
  10. pass