Vulkan/Utils/Sender.py
2022-03-26 17:42:49 -04:00

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