mirror of
https://github.com/Rushilwiz/reinvest.git
synced 2025-04-04 20:40:19 -04:00
9 lines
160 B
Python
9 lines
160 B
Python
from rest_framework_jwt.views import obtain_jwt_token
|
|
|
|
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('token/', obtain_jwt_token)
|
|
]
|