Files
RasadDam_Backend/config/urls.py

9 lines
111 B
Python
Raw Normal View History

2025-04-29 15:43:53 +03:30
from django.urls import (
include,
path,
)
urlpatterns = [
path("", include("apps.core.urls")),
]