✨ feat(manager.py): add debug log messages for service creation and update to improve debugging ✨ feat(manager.py): add teardown method to ServiceManager to teardown all services and clear state ✨ feat(manager.py): add teardown_services function to teardown all services and clear state
8 lines
94 B
Python
8 lines
94 B
Python
from abc import ABC
|
|
|
|
|
|
class Service(ABC):
|
|
name: str
|
|
|
|
def teardown(self):
|
|
pass
|