10 lines
262 B
Python
10 lines
262 B
Python
|
|
from django.urls import path, include
|
||
|
|
from rest_framework.routers import DefaultRouter
|
||
|
|
from .views import RegionViewSet
|
||
|
|
|
||
|
|
router = DefaultRouter()
|
||
|
|
router.register(r'regions', RegionViewSet, basename='region')
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path('', include(router.urls)),
|
||
|
|
]
|