15 lines
312 B
Python
15 lines
312 B
Python
import json
|
|
import discord
|
|
|
|
from discord.ext import commands
|
|
|
|
## Xeno Discord PY Bot
|
|
### Embed Test
|
|
|
|
class EmbedTest(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
async def setup(bot):
|
|
print(f'Cog_EmbedTest is disabled, and will not be loaded.')
|
|
# await bot.add_cog(EmbedTest(bot)) |