8 lines
173 B
Python
8 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"))
|