urls.py 94 B

1234567
  1. from django.urls import path
  2. from .api import api
  3. urlpatterns = [
  4. path("", api.urls),
  5. ]