Last active
October 7, 2020 08:20
-
-
Save yerkbn/0e7a3ad006deaed41171a9a5681fd6d1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.contrib import admin | |
from django.urls import path | |
from users.views import signin, user_info | |
urlpatterns = [ | |
path('admin/', admin.site.urls), | |
path('api/v1/signin', signin), | |
path('api/v1/user_info', user_info), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment