fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/apps/manga/api/urls.py

14 lines
233 B
Python

# coding: utf-8
# third
from rest_framework.routers import DefaultRouter
# own
from .views import VolumesViewSet
router = DefaultRouter(trailing_slash=False)
router.register(r'volumes', VolumesViewSet)
urlpatterns = router.urls