Upload run_bot.py
Browse files- 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()
|