11 lines
251 B
Python
11 lines
251 B
Python
"""
|
|
Django app configuration for Simulator app.
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class SimulatorConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.simulator'
|
|
verbose_name = 'Notification Simulator'
|