11 lines
241 B
Python
11 lines
241 B
Python
from discord import Intents
|
|
|
|
from administrator.config import config
|
|
import db
|
|
from discord.ext import commands
|
|
|
|
bot = commands.Bot(command_prefix=config.get("prefix"), intents=Intents.all())
|
|
|
|
import extensions
|
|
|
|
bot.run(config.get("token"))
|