15 lines
283 B
Python
15 lines
283 B
Python
"""
|
|
Configuration for the mobile_api Django application.
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class MobileApiConfig(AppConfig):
|
|
"""
|
|
Configuration class for the mobile_api Django application.
|
|
"""
|
|
name = 'lms.djangoapps.mobile_api'
|
|
verbose_name = "Mobile API"
|