kers/oauth/urls.py

10 lines
195 B
Python
Raw Normal View History

2020-07-22 03:03:01 +00:00
from django.contrib.auth import logout
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),
]