backend router

This commit is contained in:
Timofey
2025-08-29 14:20:50 +03:00
parent 9d604e8965
commit d314303066
10 changed files with 44 additions and 41 deletions

5
backend/api/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.urls import path, include
urlpatterns = [
path('v1/auth/', include('api.auth.urls'))
]