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