mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-15 18:07:02 +00:00
10 lines
222 B
Python
10 lines
222 B
Python
"""Account app file"""
|
|
"""Import Django"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AccountConfig(AppConfig):
|
|
"""default configurations"""
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'account'
|