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/apps.py

13 lines
244 B
Python
Raw Normal View History

2018-11-23 16:05:41 +00:00
"""passbook API AppConfig"""
from django.apps import AppConfig
2018-11-24 21:24:11 +00:00
2018-11-23 16:05:41 +00:00
class PassbookAPIConfig(AppConfig):
"""passbook API Config"""
name = 'passbook.api'
label = 'passbook_api'
mountpoint = 'api/'
verbose_name = 'passbook API'