test1234 / app.py
mahiatlinux's picture
Create app.py
34c4057 verified
raw
history blame
139 Bytes
import subprocess
def main():
# Run the command
subprocess.run(["node", "./src/index.js"])
if __name__ == "__main__":
main()