Spaces:
Runtime error
Runtime error
File size: 205 Bytes
105b369 |
1 2 3 4 5 6 7 8 9 10 |
from enum import Enum
class WorkspaceStarterTemplate(str, Enum):
ai_app = "ai-app"
ai_api = "ai-api"
django_app = "django-app"
streamlit_app = "streamlit-app"
junior_de = "junior-de"
|