15 lines
336 B
Python
15 lines
336 B
Python
"""
|
|
Configuration for the openedx.core.djangoapps.util Django application
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class UtilConfig(AppConfig):
|
|
"""
|
|
Let Django know that this is an app with management commands.
|
|
"""
|
|
label = 'open_edx_util'
|
|
name = 'openedx.core.djangoapps.util'
|
|
verbose_name = 'Open edX Utilities'
|