17 lines
409 B
Python
17 lines
409 B
Python
"""
|
|
Appreciation app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AppreciationConfig(AppConfig):
|
|
"""Configuration for the appreciation app"""
|
|
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.appreciation'
|
|
verbose_name = 'Appreciation System'
|
|
|
|
def ready(self):
|
|
"""Import signals when app is ready"""
|
|
import apps.appreciation.signals
|