File size: 139 Bytes
34c4057
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import subprocess

def main():
    # Run the command
    subprocess.run(["node", "./src/index.js"])

if __name__ == "__main__":
    main()