Skip to content

Commit eaa84db

Browse files
committed
fix: import 오류 수정
1 parent 441a96f commit eaa84db

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

app/core/urls.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,14 @@
1515
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
1616
"""
1717

18+
from core.route.dev.set_cookie import dev_set_cookie
19+
from core.route.health_check import livez, readyz
1820
from django.conf import settings
1921
from django.conf.urls.static import static
2022
from django.contrib import admin
2123
from django.urls import include, path, re_path, resolvers
2224
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
2325

24-
from app.core.route.dev.set_cookie import dev_set_cookie
25-
from app.core.route.health_check import livez, readyz
26-
2726
# type: ignore[assignment]
2827
v1_apis: list[resolvers.URLPattern | resolvers.URLResolver] = [
2928
path("cms/", include("cms.urls")),

0 commit comments

Comments
 (0)