Tai Truong
fix readme
d202ada
raw
history blame contribute delete
767 Bytes
from enum import Enum
class ServiceType(str, Enum):
"""Enum for the different types of services that can be registered with the service manager."""
AUTH_SERVICE = "auth_service"
CACHE_SERVICE = "cache_service"
SHARED_COMPONENT_CACHE_SERVICE = "shared_component_cache_service"
SETTINGS_SERVICE = "settings_service"
DATABASE_SERVICE = "database_service"
CHAT_SERVICE = "chat_service"
SESSION_SERVICE = "session_service"
TASK_SERVICE = "task_service"
STORE_SERVICE = "store_service"
VARIABLE_SERVICE = "variable_service"
STORAGE_SERVICE = "storage_service"
# SOCKETIO_SERVICE = "socket_service"
STATE_SERVICE = "state_service"
TRACING_SERVICE = "tracing_service"
TELEMETRY_SERVICE = "telemetry_service"