mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-08-14 12:50:37 +03:00
10 lines
253 B
Python
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
|