unknown
initial: Chatbot Service
a1c77ae
Raw
History Blame Contribute Delete
353 Bytes
from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path('admin/', admin.site.urls),
path('chatbot/', include('chatbot.urls')),
]
if settings.DEBUG:
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)