notification app, api for device registration and fcm token

This commit is contained in:
abutalib-kiwi
2023-07-18 14:06:04 +05:30
parent 04342133ef
commit ba4d5933de
15 changed files with 142 additions and 1 deletions

13
notifications/apps.py Normal file
View File

@ -0,0 +1,13 @@
"""
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'