Files
oxpanel25/app/api/urls.py
2025-03-13 22:08:06 +01:00

10 lines
140 B
Python

from django.urls import path, include
from .routers import router
app_name = "api"
urlpatterns = [
path("", include(router.urls)),
]