django-project-structure/config/urls.py

9 lines
119 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", "core")),
2022-01-25 03:15:53 +00:00
]