23 lines
540 B
Python
23 lines
540 B
Python
import logging
|
|
import sys
|
|
from os import listdir
|
|
|
|
from discord.ext.commands import Bot
|
|
from src.utils.config import build_config
|
|
|
|
# read config at configured location \\ default to 'config.ini'
|
|
config = build_config()
|
|
|
|
# spawn discord bot instance
|
|
# init token from config
|
|
bot = Bot(command_prefix="~ak ")
|
|
token = config['AUTH']['token']
|
|
|
|
# load extensions
|
|
for file in os.listdir("src/cogs"):
|
|
if file.endswith(".py"):
|
|
name = file[:-3]
|
|
bot.load_extension(f"src.cogs.{name}")
|
|
|
|
if __name__ == "__main__":
|
|
bot.run(token) |