20 lines
357 B
Python
20 lines
357 B
Python
"""
|
|
Commerce Application Configuration
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CommerceConfig(AppConfig):
|
|
"""
|
|
Application Configuration for Commerce.
|
|
"""
|
|
name = 'lms.djangoapps.commerce'
|
|
|
|
def ready(self):
|
|
"""
|
|
Connect handlers to signals.
|
|
"""
|
|
from . import signals # pylint: disable=unused-import
|