backend/config/api_router.py

10 lines
217 B
Python
Raw Normal View History

2023-05-21 13:37:21 +03:00
from rest_framework.routers import DefaultRouter
from passfinder.recomendations.api.views import TinderView
router = DefaultRouter()
router.register('tinder', TinderView)
2023-05-18 20:25:22 +03:00
app_name = "api"
2023-05-21 13:37:21 +03:00
urlpatterns = router.urls