lib.itmens/catalog/urls.py

7 lines
93 B
Python
Raw Normal View History

from django.urls import path
from .api import api
urlpatterns = [
path("", api.urls),
]