10 lines
183 B
Python
10 lines
183 B
Python
class LeGuHandler:
|
|
handler_link = []
|
|
|
|
def __init__(self, func):
|
|
LeGuHandler.handler_link.append(func)
|
|
|
|
@staticmethod
|
|
def format_data(data: dict):
|
|
pass
|