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