django-project-structure/config/urls.py

9 lines
111 B
Python
Raw Normal View History

from django.urls import (
include,
path,
)
2022-01-25 03:15:53 +00:00
urlpatterns = [
path("", include("apps.core.urls")),
2022-01-25 03:15:53 +00:00
]