mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
10 lines
251 B
Python
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])
|