24 lines
535 B
Python
24 lines
535 B
Python
from disnake.ext import commands
|
|
import disnake
|
|
import db
|
|
import httpx
|
|
from datetime import datetime
|
|
from loguru import logger
|
|
import sb_utils
|
|
import sb_emojis
|
|
import csv
|
|
from io import StringIO
|
|
|
|
class Parish_Intel(commands.Cog):
|
|
def __init__(self,bot):
|
|
self.bot = bot
|
|
|
|
@commands.slash_command()
|
|
async def moon(self,inter):
|
|
asd = disnake.Embed(title="KEK0")
|
|
asd.set_image(file=disnake.File("0.png"))
|
|
|
|
def setup(bot):
|
|
logger.info(f"{__name__} Loaded")
|
|
bot.add_cog(Parish_Intel(bot))
|
|
|