yttest / app.py
ulduldp's picture
Update app.py
8ef5551 verified
raw
history blame contribute delete
221 Bytes
import subprocess
# 1️⃣ install dependencies
print("Installing npm packages...")
subprocess.run(["npm", "install", "grammy"], check=True)
# 2️⃣ run bot
print("Starting bot...")
subprocess.run(["node", "hit.js"])