mirror of
https://github.com/mistakes-23/backend.git
synced 2024-11-25 17:33:44 +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"))]
|