add the collector urls to the project urls

This commit is contained in:
Andreas Zweili 2019-10-20 21:21:13 +02:00
parent 57d835a2e8
commit 66bb495287
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,8 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.urls import path
from django.conf.urls import include, url
urlpatterns = [
url(r'', include('collector.urls')),
]