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