diff options
Diffstat (limited to 'checkin/urls.py')
-rw-r--r-- | checkin/urls.py | 3 |
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 | """ |
16 | from django.contrib import admin | 16 | from django.contrib import admin |
17 | from django.urls import path | 17 | from django.urls import path, include |
18 | 18 | ||
19 | urlpatterns = [ | 19 | urlpatterns = [ |
20 | path('bot/', include('bot.urls')), | ||
20 | path('admin/', admin.site.urls), | 21 | path('admin/', admin.site.urls), |
21 | ] | 22 | ] |