mirror of
https://github.com/lemeow125/Ivy-Backend.git
synced 2025-01-19 07:13:07 +08:00
7 lines
186 B
Python
7 lines
186 B
Python
from django.contrib import admin
|
|
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('', include('products.urls')),
|
|
path('accounts/', include('accounts.urls')),
|
|
]
|