ConceptPortal-public/rsconcept/backend/apps/prompt/urls.py
Ivan df72b1f527
Some checks are pending
Backend CI / build (3.12) (push) Waiting to run
Backend CI / notify-failure (push) Blocked by required conditions
Frontend CI / build (22.x) (push) Waiting to run
Frontend CI / notify-failure (push) Blocked by required conditions
F: Implement backend for prompts
2025-07-13 18:00:40 +03:00

10 lines
253 B
Python

''' Routing: Prompts for AI helper. '''
from rest_framework.routers import DefaultRouter
from .views import PromptTemplateViewSet
router = DefaultRouter()
router.register('prompts', PromptTemplateViewSet, 'prompt-template')
urlpatterns = router.urls