hackens-orga/hackens_orga/wishlist/urls.py

15 lines
307 B
Python
Raw Normal View History

2023-02-08 02:04:34 +01:00
"""backend URL Configuration
"""
from rest_framework import routers
from .views import PurchaseTagViewSet, PurchaseViewSet
router = routers.DefaultRouter()
router.register(r"tag", PurchaseTagViewSet)
router.register(r"purchase", PurchaseViewSet)
app_name = "wishlist-backend"
urlpatterns = router.urls