Borrowing-TrackerBackend/equipment_tracker/api/urls.py

6 lines
105 B
Python
Raw Normal View History

2023-10-23 21:09:46 +08:00
from django.urls import path, include
urlpatterns = [
2023-11-09 19:48:13 +08:00
path('accounts/', include('accounts.urls'))
2023-10-23 21:09:46 +08:00
]