13 lines
252 B
Python
13 lines
252 B
Python
from meta import client, conf, log
|
|
|
|
import data # 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'])
|