kers/oauth/urls.py
Maxime Bloch 53a7e23b4f oops
2020-07-22 04:22:40 +02:00

8 lines
156 B
Python

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