14 lines
293 B
Python
14 lines
293 B
Python
"""
|
|
Openedx Certificates Application Configuration
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class OpenedxCertificatesConfig(AppConfig):
|
|
"""
|
|
Application Configuration for Openedx Certificates.
|
|
"""
|
|
name = 'openedx.core.djangoapps.certificates'
|
|
label = 'openedx_certificates'
|