This repository has been archived on 2024-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-20 03:57:14 -04:00

11 lines
235 B
Python

from django.urls import include, path
from . import views
from rest_framework import routers
router = routers.DefaultRouter()
router.register('migrations', views.MigrationViewSet)
urlpatterns = [
path('', include(router.urls))
]