11 lines
255 B
Python
11 lines
255 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'
|