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