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`
10 lines
176 B
Python
10 lines
176 B
Python
import logging
|
|
import meta
|
|
|
|
meta.logger.setLevel(logging.DEBUG)
|
|
logging.getLogger("discord").setLevel(logging.INFO)
|
|
|
|
from utils import interactive # noqa
|
|
|
|
import main # noqa
|