8 lines
152 B
Python
8 lines
152 B
Python
from src import Engine
|
|
|
|
class MyEngine(Engine):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def execute(self, data):
|
|
print(data) |