mirror of
https://github.com/jazzband/django-categories.git
synced 2026-05-19 13:01:09 +00:00
7 lines
187 B
Python
7 lines
187 B
Python
from rest_framework.routers import DefaultRouter
|
|
|
|
from .viewsets import CategoryViewSet
|
|
|
|
|
|
router = DefaultRouter()
|
|
router.register(r'categories', CategoryViewSet, base_name='categories')
|