mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-18 13:09:04 +02:00
10 lines
245 B
Python
10 lines
245 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class FinancesConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "finances"
|
|
|
|
def ready(self):
|
|
""" """
|
|
from .signals import perform_tasks_on_login # noqa
|