10 lines
250 B
Python
10 lines
250 B
Python
from django.urls import path, include
|
|
from rest_framework.routers import DefaultRouter
|
|
from .views import TemplateViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'', TemplateViewSet)
|
|
|
|
urlpatterns = [
|
|
path('', include(router.urls)),
|
|
] |