6 lines
102 B
Python
6 lines
102 B
Python
from . import grafana_bp
|
|
|
|
@grafana_bp.route('/health')
|
|
def health():
|
|
return {"status": "ok"}, 200
|