ssh암복호화 해결 해야함

This commit is contained in:
2025-05-20 19:07:11 +09:00
parent b172945fc5
commit 3d4ba735c0
10 changed files with 285 additions and 5 deletions

10
ansible/urls.py Normal file
View File

@ -0,0 +1,10 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from .views import AnsibleTaskViewSet
router = DefaultRouter()
router.register(r'tasks', AnsibleTaskViewSet, basename='ansibletask')
urlpatterns = [
path('', include(router.urls)),
]