urls.py 105 B

123456
  1. from django.urls import include, path
  2. urlpatterns = [
  3. path('chatbot/', include('chatbot.urls')),
  4. ]