File size: 221 Bytes
5285d9b
4523a18
8ef5551
 
 
 
 
 
5285d9b
1
2
3
4
5
6
7
8
9
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"])