django-project-structure/config/urls.py

9 lines
111 B
Python

from django.urls import (
include,
path,
)
urlpatterns = [
path("", include("apps.core.urls")),
]