12 lines
293 B
Python
12 lines
293 B
Python
"""passbook auth oauth provider app config"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class PassbookOAuthProviderConfig(AppConfig):
|
|
"""passbook auth oauth provider app config"""
|
|
|
|
name = 'passbook.oauth_provider'
|
|
label = 'passbook_oauth_provider'
|
|
mountpoint = 'application/oauth/'
|