10 lines
176 B
Python
10 lines
176 B
Python
|
class MockCls:
|
||
|
def __init__(self):
|
||
|
self.args = {}
|
||
|
|
||
|
@staticmethod
|
||
|
def route(*args, **kwargs):
|
||
|
def inner(path):
|
||
|
pass
|
||
|
return inner
|