5 lines
130 B
Python
5 lines
130 B
Python
class Response:
|
|
def __init__(self, status, ctype, content):
|
|
self.status = status
|
|
self.ctype = ctype
|
|
self.content = content
|