mirror of
https://github.com/lemeow125/Ivy-Backend.git
synced 2024-11-16 22:29:25 +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')),
|
|
]
|