8 lines
151 B
Python
8 lines
151 B
Python
class MyResponse:
|
|
def __init__(self, *args, **kwargs):
|
|
...
|
|
|
|
@staticmethod
|
|
def json(*args, **kwargs):
|
|
return {'cursor': []}
|