django-notifications/notifications/apps.py
2023-06-24 00:10:23 +00:00

10 lines
298 B
Python

""" Django notifications apps file """
# -*- coding: utf-8 -*-
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class Config(AppConfig):
name = "notifications"
verbose_name = _("Notifications")
default_auto_field = "django.db.models.AutoField"