10 lines
169 B
Python
10 lines
169 B
Python
"""
|
|
Course home api application configuration
|
|
"""
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CourseHomeApiConfig(AppConfig):
|
|
name = 'lms.djangoapps.course_home_api'
|