mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-07-10 23:27:33 +00:00
14 lines
249 B
Python
14 lines
249 B
Python
"""
|
|
notification app file
|
|
"""
|
|
# django imports
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
"""
|
|
notification app config
|
|
"""
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'notifications'
|