Ivy-Backend/ivy/api/urls.py

8 lines
186 B
Python
Raw Normal View History

2023-02-27 23:59:14 +08:00
from django.contrib import admin
2023-02-28 00:26:48 +08:00
from django.urls import path, include
2023-02-27 23:59:14 +08:00
urlpatterns = [
2023-03-05 21:56:48 +08:00
path('', include('products.urls')),
path('accounts/', include('accounts.urls')),
2023-02-27 23:59:14 +08:00
]