9 lines
294 B
Python
9 lines
294 B
Python
"""
|
|
Simulator app for testing external notification APIs.
|
|
|
|
This app provides mock endpoints that simulate external email and SMS APIs.
|
|
- Email simulator sends real emails via Django SMTP
|
|
- SMS simulator prints messages to terminal
|
|
"""
|
|
default_app_config = 'apps.simulator.apps.SimulatorConfig'
|