Files
SnapOtter/packages/ai/python/doc_health.py
T

12 lines
203 B
Python

"""Health probe for the docs-profile dispatcher. No dependencies. Prints {"ok": true}."""
import json
import sys
def main():
print(json.dumps({"ok": True}))
if __name__ == "__main__":
main()