mirror of
https://github.com/weyne85/discord_music_bot.git
synced 2025-10-29 16:58:27 +00:00
13 lines
282 B
Python
13 lines
282 B
Python
from discord.ext.commands import Context
|
|
from discord import Embed
|
|
|
|
|
|
class Sender:
|
|
@classmethod
|
|
async def send_embed(cls, ctx: Context, embed: Embed) -> None:
|
|
pass
|
|
|
|
@classmethod
|
|
async def send_message(cls, ctx: Context, message: Embed) -> None:
|
|
pass
|