mirror of
https://github.com/jazzband/django-categories.git
synced 2026-04-27 18:24:50 +00:00
6 lines
185 B
Python
6 lines
185 B
Python
from rest_framework.routers import DefaultRouter
|
|
|
|
from .viewsets import CategoryViewSet
|
|
|
|
router = DefaultRouter()
|
|
router.register(r"categories", CategoryViewSet, basename="categories")
|