Vitalis_Devcore / src /exec /action_executor.py
FerrellSyntheticIntelligence
Initial clean commit: Source code only
29cdc9d
#!/usr/bin/env python3
import subprocess
class ActionExecutor:
def run(self, cmd: str):
return subprocess.run(cmd, shell=True, capture_output=True, text=True)