9 lines
111 B
Python
9 lines
111 B
Python
|
|
from django.urls import (
|
||
|
|
include,
|
||
|
|
path,
|
||
|
|
)
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("", include("apps.core.urls")),
|
||
|
|
]
|