13 lines
326 B
Python
13 lines
326 B
Python
from discord import Intents
|
|
from discord_slash import SlashCommand
|
|
|
|
from administrator.config import config
|
|
import db
|
|
from discord.ext import commands
|
|
|
|
bot = commands.Bot(command_prefix=config.get("prefix"), intents=Intents.all())
|
|
slash = SlashCommand(bot, auto_register=True)
|
|
|
|
import extensions
|
|
|
|
bot.run(config.get("token"))
|