9 lines
173 B
Python
9 lines
173 B
Python
|
from bot_bde.config import config
|
||
|
from discord.ext import commands
|
||
|
|
||
|
bot = commands.Bot(command_prefix=config.get("prefix"))
|
||
|
|
||
|
import extensions
|
||
|
|
||
|
bot.run(config.get("token"))
|