Files
django-q2/django_q/tests/urls.py
Ilan Steemers de9ba04602 Fixes deprecated count method (#549)
* Replaces deprecated count with count_documents

* Uses new re_path instead of url()
2021-05-01 16:23:37 +02:00

7 lines
126 B
Python

from django.urls import re_path
from django.contrib import admin
urlpatterns = [
re_path(r'^admin/', admin.site.urls),
]