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