kers/oauth/urls.py
2020-07-22 03:48:22 +02:00

9 lines
156 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('register', views.register),
path('authorized', views.register_callback),
]