Files
agentic-soc-platform/backend/apps/common/urls.py
funnywolf b6b4cbf017 0.4.0 I always have a choice
You shape nothing until you hold everything.
2026-06-27 19:08:48 +08:00

9 lines
250 B
Python

from django.urls import path
from .views import HealthView, ResourceMetadataView
urlpatterns = [
path("health/", HealthView.as_view(), name="health"),
path("metadata/resources/", ResourceMetadataView.as_view(), name="resource-metadata"),
]