mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-02-24 07:30:42 +03:00
7 lines
141 B
Python
7 lines
141 B
Python
|
from django.urls import include, path
|
||
|
|
||
|
app_name = "api"
|
||
|
urlpatterns = [
|
||
|
path("ticket/", include("press_release_nl.tickets.api.urls")),
|
||
|
]
|