10 lines
175 B
Python
10 lines
175 B
Python
"""
|
|
Define the effort_estimation Django App.
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class EffortEstimationConfig(AppConfig):
|
|
name = 'openedx.features.effort_estimation'
|