8 lines
246 B
Python
8 lines
246 B
Python
from django.urls import path
|
|
from .views import ChatBotAPIView, MultiChatAPIView
|
|
|
|
urlpatterns = [
|
|
path('chat/<int:bot_id>/', ChatBotAPIView.as_view(), name='chat-bot'),
|
|
path('multichat/', MultiChatAPIView.as_view(), name='multi-chat'),
|
|
]
|