1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/royalgames.py

23 lines
957 B
Python
Raw Normal View History

2019-04-01 10:33:20 +00:00
import os
import asyncio
from royalnet.bots import TelegramBot
2019-04-09 09:15:27 +00:00
from royalnet.commands import *
2019-04-01 10:33:20 +00:00
from royalnet.commands.debug_create import DebugCreateCommand
2019-04-04 15:39:38 +00:00
from royalnet.commands.error_handler import ErrorHandlerCommand
2019-04-01 10:33:20 +00:00
from royalnet.network import RoyalnetServer
2019-04-03 17:31:20 +00:00
from royalnet.database.tables import Royal, Telegram
2019-04-01 10:33:20 +00:00
loop = asyncio.get_event_loop()
2019-04-03 17:31:20 +00:00
commands = [PingCommand, ShipCommand, SmecdsCommand, ColorCommand, CiaoruoziCommand, DebugCreateCommand, SyncCommand,
2019-04-09 09:15:27 +00:00
AuthorCommand, DiarioCommand, RageCommand, DateparserCommand, ReminderCommand]
2019-04-01 10:33:20 +00:00
master = RoyalnetServer("localhost", 1234, "sas")
2019-04-04 15:39:38 +00:00
tg_bot = TelegramBot(os.environ["TG_AK"], "localhost:1234", "sas", commands, os.environ["DB_PATH"], Royal, Telegram, "tg_id", error_command=ErrorHandlerCommand)
2019-04-01 10:33:20 +00:00
loop.create_task(master.run())
loop.create_task(tg_bot.run())
2019-04-07 21:32:33 +00:00
print("Commands enabled:")
print(tg_bot.generate_botfather_command_string())
2019-04-01 10:33:20 +00:00
print("Starting loop...")
loop.run_forever()