mirror of
https://github.com/goauthentik/authentik
synced 2026-05-11 01:22:25 +02:00
13 lines
244 B
Python
13 lines
244 B
Python
"""passbook API AppConfig"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class PassbookAPIConfig(AppConfig):
|
|
"""passbook API Config"""
|
|
|
|
name = "passbook.api"
|
|
label = "passbook_api"
|
|
mountpoint = "api/"
|
|
verbose_name = "passbook API"
|