Skip to content

Instantly share code, notes, and snippets.

@yerkbn
Last active October 7, 2020 08:20
Show Gist options
  • Save yerkbn/0e7a3ad006deaed41171a9a5681fd6d1 to your computer and use it in GitHub Desktop.
Save yerkbn/0e7a3ad006deaed41171a9a5681fd6d1 to your computer and use it in GitHub Desktop.
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