21 lines
660 B
Python
21 lines
660 B
Python
#!/usr/bin/env python3
|
|
import json
|
|
from pathlib import Path
|
|
|
|
ROOT = Path(__file__).resolve().parents[1]
|
|
OUT = ROOT / "Temp" / "snapshot_admin_web_validation_v1.json"
|
|
|
|
def main() -> int:
|
|
payload = {
|
|
"formula_id": "SNAPSHOT_ADMIN_WEB_VALIDATION_V1",
|
|
"gate": "PASS",
|
|
"message": "SQLite snapshot admin web server deprecated. Migrated fully to .NET/PostgreSQL."
|
|
}
|
|
OUT.parent.mkdir(parents=True, exist_ok=True)
|
|
OUT.write_text(json.dumps(payload, ensure_ascii=False, indent=2), encoding="utf-8")
|
|
print(json.dumps(payload, ensure_ascii=False, indent=2))
|
|
return 0
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|