mirror of
https://github.com/alerta/alerta.git
synced 2025-02-05 05:59:43 +00:00
6 lines
137 B
Python
6 lines
137 B
Python
#!/usr/bin/env python
|
|
|
|
try:
|
|
from alerta import app # alerta >= 5.0
|
|
except Exception:
|
|
from alerta.app import app # alerta < 5.0
|