from django.urls import path from users.views import get_token, check_registration urlpatterns = [ path('get-token/', get_token), path('check/', check_registration), ]