File size: 214 Bytes
7d7792c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Chatbot URL routing.
"""
from django.urls import path
from . import views

app_name = "chatbot"

urlpatterns = [
    path("chat/", views.chat, name="chat"),
    path("health/", views.health, name="health"),
]