mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
9 lines
250 B
Python
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"),
|
|
]
|