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