mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
10 lines
265 B
Python
10 lines
265 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
|
|
from .views import AuditLogViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register("audit-logs", AuditLogViewSet, basename="auditlog")
|
|
|
|
urlpatterns = [path("", include(router.urls))]
|