16 lines
292 B
Python
16 lines
292 B
Python
from config import Config
|
|
from myBot import MyBot
|
|
|
|
config = Config()
|
|
bot = MyBot(config=config)
|
|
|
|
|
|
@bot.event
|
|
async def on_ready():
|
|
print(f'Bot started as {bot.user}')
|
|
|
|
modules = ["modules.youtrackIntegration",
|
|
"modules.TMC"]
|
|
for module in modules:
|
|
await bot.load_extension(module)
|