qrtr-services/connection/urls.py

7 lines
171 B
Python
Executable File

from rest_framework import routers
from .views import ConnectionViewSet
ROUTER = routers.SimpleRouter()
ROUTER.register(r'', ConnectionViewSet)
urlpatterns = ROUTER.urls