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
272 B
Python
15 lines
272 B
Python
from meta import client, conf, log
|
|
|
|
import data # noqa
|
|
|
|
import core # noqa
|
|
|
|
import modules # noqa
|
|
|
|
# Initialise all modules
|
|
client.initialise_modules()
|
|
|
|
# Log readyness and execute
|
|
log("Initial setup complete, logging in", context='SETUP')
|
|
client.run(conf.bot['TOKEN'])
|