This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/accounts/apps.py

9 lines
235 B
Python
Raw Normal View History

2023-12-18 21:00:37 +01:00
from django.apps import AppConfig
2025-02-17 22:10:38 +01:00
from django.utils.translation import gettext_lazy as _
2023-12-18 21:00:37 +01:00
class AccountConfig(AppConfig):
2024-02-03 22:07:20 +01:00
default_auto_field = 'django.db.models.BigAutoField'
name = 'accounts'
2025-02-17 22:10:38 +01:00
verbose_name = _('accounts')