hackens-orga/hackens_orga/agent/urls.py

14 lines
231 B
Python
Raw Normal View History

2023-02-08 02:04:34 +01:00
"""backend URL Configuration
"""
from rest_framework import routers
from .views import AgentViewSet
router = routers.DefaultRouter()
router.register(r"agent", AgentViewSet)
app_name = "agent-backend"
urlpatterns = router.urls