coenv / server /tasks /__init__.py
SandyTheAdventurer's picture
Upload folder using huggingface_hub
05a686e verified
raw
history blame contribute delete
289 Bytes
"""coenv Tasks"""
__all__ = ["task_pod_recovery", "task_autoscaling", "task_incident"]
from .task_pod_recovery import PodRecoveryTask
from .task_autoscaling import AutoscalingTask
from .task_incident import IncidentTask
__all__ += ["PodRecoveryTask", "AutoscalingTask", "IncidentTask"]