new_wukong/plugins/example.py
2024-08-03 21:12:41 +08:00

8 lines
152 B
Python

from src import Engine
class MyEngine(Engine):
def __init__(self):
super().__init__()
def execute(self, data):
print(data)