mirror of
https://github.com/mistakes-23/backend.git
synced 2025-02-18 06:50:31 +03:00
5 lines
125 B
Python
5 lines
125 B
Python
|
from django.urls import path, include
|
||
|
|
||
|
app_name = "api"
|
||
|
urlpatterns = [path("", include("dock_checker.processor.api.urls"))]
|