This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/api/urls.py

9 lines
172 B
Python
Raw Normal View History

2018-11-23 16:05:41 +00:00
"""passbook api urls"""
2018-11-24 21:24:11 +00:00
from django.urls import include, path
2018-11-23 16:05:41 +00:00
2018-11-24 21:24:11 +00:00
from passbook.api.v1.urls import urlpatterns as v1_urls
urlpatterns = [
path('v1/', include(v1_urls))
]