mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-22 19:36:32 +03:00
8 lines
213 B
Python
8 lines
213 B
Python
from django.urls import include, path
|
|
|
|
app_name = "api"
|
|
urlpatterns = [
|
|
path("ticket/", include("pitch_deck_generator.tickets.api.urls")),
|
|
path("decks/", include("pitch_deck_generator.decks.api.urls")),
|
|
]
|