backend/config/api_router.py

8 lines
211 B
Python
Raw Permalink Normal View History

2023-09-08 16:47:40 +03:00
from django.urls import include, path
app_name = "api"
urlpatterns = [
path("ticket/", include("press_release_nl.tickets.api.urls")),
2023-09-08 19:06:21 +03:00
path("process/", include("press_release_nl.processor.api.urls")),
2023-09-08 16:47:40 +03:00
]