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