Phoe2004 commited on
Commit
0100596
·
verified ·
1 Parent(s): 641a3a4

Upload run_bot.py

Browse files
Files changed (1) hide show
  1. run_bot.py +9 -0
run_bot.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ run_bot.py — bot.py ကို VPS မှာ run သည်
4
+ start.sh မှ background process အဖြစ် ခေါ်သည်
5
+ """
6
+ from bot import main
7
+
8
+ if __name__ == "__main__":
9
+ main()