aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'checkin/urls.py')
-rw-r--r--checkin/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/checkin/urls.py b/checkin/urls.py
index a173748..4f9cbe8 100644
--- a/checkin/urls.py
+++ b/checkin/urls.py
@@ -14,8 +14,9 @@ Including another URLconf
14 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 14 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
15""" 15"""
16from django.contrib import admin 16from django.contrib import admin
17from django.urls import path 17from django.urls import path, include
18 18
19urlpatterns = [ 19urlpatterns = [
20 path('bot/', include('bot.urls')),
20 path('admin/', admin.site.urls), 21 path('admin/', admin.site.urls),
21] 22]
Powered by cgit v1.2.3 (git 2.41.0)