mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2024-11-10 18:06:33 +03:00
8 lines
211 B
Python
8 lines
211 B
Python
from django.urls import include, path
|
|
|
|
app_name = "api"
|
|
urlpatterns = [
|
|
path("ticket/", include("press_release_nl.tickets.api.urls")),
|
|
path("process/", include("press_release_nl.processor.api.urls")),
|
|
]
|