mirror of
https://github.com/marking-hack/backend.git
synced 2024-11-10 20:36:34 +03:00
5 lines
122 B
Python
5 lines
122 B
Python
from django.urls import path, include
|
|
|
|
app_name = "api"
|
|
urlpatterns = [path("", include("marking_hack.market.api.urls"))]
|