15 lines
246 B
Python
15 lines
246 B
Python
"""
|
|
Configure OAuthDispatch App
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class OAuthDispatchAppConfig(AppConfig):
|
|
"""
|
|
OAuthDispatch Configuration
|
|
"""
|
|
name = u'lms.djangoapps.oauth_dispatch'
|