mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +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)
|