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