10 lines
206 B
Python
10 lines
206 B
Python
|
|
"""
|
||
|
|
Uni-Wizard Daemons Package
|
||
|
|
Background services for the uni-wizard architecture
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .health_daemon import HealthDaemon
|
||
|
|
from .task_router import TaskRouter
|
||
|
|
|
||
|
|
__all__ = ['HealthDaemon', 'TaskRouter']
|