14 lines
322 B
Python
14 lines
322 B
Python
"""
|
|
Automation URLs
|
|
"""
|
|
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from igny8_core.business.automation.views import AutomationViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'', AutomationViewSet, basename='automation')
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
]
|