mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-04-29 01:14:42 +00:00
9 lines
202 B
Python
9 lines
202 B
Python
|
|
""" Django notifications apps file """
|
||
|
|
# -*- coding: utf-8 -*-
|
||
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class Config(AppConfig):
|
||
|
|
name = "sample_app"
|
||
|
|
default_auto_field = "django.db.models.AutoField"
|