7 lines
186 B
Python
7 lines
186 B
Python
"""Passbook API URLs"""
|
|
from django.urls import path
|
|
|
|
from passbook.api.v1.openid import OpenIDUserInfoView
|
|
|
|
urlpatterns = [path("openid/", OpenIDUserInfoView.as_view(), name="openid")]
|