mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
12 lines
203 B
Python
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()
|