13 lines
181 B
Python
13 lines
181 B
Python
|
|
"""
|
|
Discounts application configuration
|
|
"""
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class DiscountsConfig(AppConfig):
|
|
name = 'openedx.features.discounts'
|