mirror of
https://github.com/jazzband/django-categories.git
synced 2026-05-20 13:21:54 +00:00
6 lines
186 B
Python
6 lines
186 B
Python
from rest_framework.routers import DefaultRouter
|
|
|
|
from .viewsets import CategoryViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r"categories", CategoryViewSet, base_name="categories")
|