kers/oauth/urls.py

9 lines
156 B
Python
Raw Normal View History

2020-07-22 01:48:22 +00:00
from django.urls import path
from . import views
urlpatterns = [
path('register', views.register),
path('authorized', views.register_callback),
]