Initial commit

This commit is contained in:
2026-05-31 05:40:49 +10:00
commit eb070c9d17
22 changed files with 1420 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# !/bin/python3
import sys
import os
sys.path.insert(0, os.path.join(os.getcwd()))
sys.path.insert(0, os.path.join(os.getcwd(), "src"))
if __name__ == '__main__':
from bot import _main
_main()