mirror of
https://github.com/evraz-hack/backend.git
synced 2024-11-22 17:16:38 +03:00
7 lines
129 B
Python
7 lines
129 B
Python
|
from django.urls import path, include
|
||
|
|
||
|
app_name = "api"
|
||
|
urlpatterns = [
|
||
|
path("exgausters/", include("analytics.api.urls"))
|
||
|
]
|