mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-24 02:53:43 +03:00
11 lines
300 B
Python
11 lines
300 B
Python
from rest_framework.routers import DefaultRouter
|
|
from passfinder.recomendations.api.views import TinderView, PersonalRecommendation
|
|
|
|
|
|
router = DefaultRouter()
|
|
|
|
router.register('tinder', TinderView)
|
|
router.register("recommendations", PersonalRecommendation)
|
|
|
|
app_name = "api"
|
|
urlpatterns = router.urls |