1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:03:12 +00:00
Lumi/modules/misc/invite.py

37 lines
1 KiB
Python

from discord.ext import commands
import lib.format
from lib.client import Luminara
from lib.const import CONST
from ui.embeds import Builder
from ui.views.invite import InviteButton
class Invite(commands.Cog):
def __init__(self, bot: Luminara):
self.bot = bot
self.invite.usage = lib.format.generate_usage(self.invite)
@commands.hybrid_command(name="invite", aliases=["inv"])
async def invite(self, ctx: commands.Context[Luminara]) -> None:
"""
Invite command.
Parameters
----------
ctx : commands.Context[Luminara]
The context of the command.
"""
await ctx.send(
embed=Builder.create_embed(
Builder.SUCCESS,
user_name=ctx.author.name,
author_text=CONST.STRINGS["invite_author"],
description=CONST.STRINGS["invite_description"],
),
view=InviteButton(),
)
async def setup(bot: Luminara) -> None:
await bot.add_cog(Invite(bot))