We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 441a96f commit eaa84dbCopy full SHA for eaa84db
1 file changed
app/core/urls.py
@@ -15,15 +15,14 @@
15
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
16
"""
17
18
+from core.route.dev.set_cookie import dev_set_cookie
19
+from core.route.health_check import livez, readyz
20
from django.conf import settings
21
from django.conf.urls.static import static
22
from django.contrib import admin
23
from django.urls import include, path, re_path, resolvers
24
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
25
-from app.core.route.dev.set_cookie import dev_set_cookie
-from app.core.route.health_check import livez, readyz
26
-
27
# type: ignore[assignment]
28
v1_apis: list[resolvers.URLPattern | resolvers.URLResolver] = [
29
path("cms/", include("cms.urls")),
0 commit comments