mahiatlinux commited on
Commit
34c4057
1 Parent(s): 2128776

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import subprocess
2
+
3
+ def main():
4
+ # Run the command
5
+ subprocess.run(["node", "./src/index.js"])
6
+
7
+ if __name__ == "__main__":
8
+ main()