nyx/tests/dynamic_fixtures/lang_detect/cli_python
2026-06-05 10:16:30 -05:00

10 lines
251 B
Python

#!/usr/bin/env python3
# Extensionless CLI entry point. Shebang-only language identification.
import os
import sys
def handle_request(payload: str) -> None:
os.system("echo " + payload)
if __name__ == "__main__":
handle_request(sys.argv[1])