mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
7 lines
125 B
Python
7 lines
125 B
Python
import subprocess
|
|||
from reader import read_input
|
|||
|
|||
def handle():
|
|||
data = read_input()
|
|||
subprocess.call(data, shell=True)
|