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