10 lines
196 B
Python
10 lines
196 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BillingConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'igny8_core.modules.billing'
|
|
verbose_name = 'Billing'
|
|
|
|
|