structio/structio/core/tooling.py

10 lines
181 B
Python

from structio.abc import BaseDebugger
class SimpleDebugger(BaseDebugger):
def on_start(self):
print(">> Started")
def on_exit(self):
print(f"<< Stopped")