""" 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)), ]