11 lines
235 B
Python
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))
|
|
]
|