Added flexibility to data `update_where`. Added interactive utils, with improved pager. Added user data table, with caching and transactional interface. Added `topcoins` command to `Economy` Added `top` command to `Study`
15 lines
363 B
Python
15 lines
363 B
Python
from discord import Intents
|
|
from cmdClient.cmdClient import cmdClient
|
|
|
|
from .config import Conf
|
|
|
|
from constants import CONFIG_FILE
|
|
|
|
# Initialise config
|
|
conf = Conf(CONFIG_FILE)
|
|
|
|
# Initialise client
|
|
owners = [int(owner) for owner in conf.bot.getlist('owners')]
|
|
client = cmdClient(prefix=conf.bot['prefix'], owners=owners, intents=Intents.all())
|
|
client.conf = conf
|