11 lines
199 B
Python
11 lines
199 B
Python
|
import lightbulb
|
||
|
|
||
|
from config import load
|
||
|
|
||
|
config = load()
|
||
|
|
||
|
bot = lightbulb.BotApp(config.discord_token, default_enabled_guilds=[config.discord_guild_id])
|
||
|
bot.load_extensions_from("ext/")
|
||
|
|
||
|
bot.run()
|