10 lines
213 B
Python
10 lines
213 B
Python
from typing import override
|
|
from src import Engine
|
|
|
|
class MyEngine(Engine):
|
|
@override
|
|
def __init__(is_stream: bool = False):
|
|
super().__init__()
|
|
|
|
def execute(self, data):
|
|
print(data) |