nonsensebot/app/__main__.py
2024-07-28 23:33:15 +01:00

25 lines
445 B
Python

import click
import logging
from tortoise import run_async
log = logging.getLogger(__name__)
@click.group()
def cli():
logging.basicConfig(level=logging.INFO)
@cli.command()
def run():
"""Runs the bot"""
log.info("Starting bot.")
logging.getLogger("nio.rooms").setLevel(logging.WARNING)
from .main import bot
run_async(bot.start(access_token=bot.cfg["bot"]["access_token"]))
if __name__ == "__main__":
cli()