PythonXeno/cogs/svrspeccom.py
2024-10-26 04:47:45 -05:00

15 lines
312 B
Python

import json
import discord
from discord.ext import commands
## Xeno Discord PY Bot
### Server Specific Commands
class SpecificComm(commands.Cog):
def __init__(self, bot):
self.bot = bot
async def setup(bot):
print(f'Cog_SpecificComm was initialized')
await bot.add_cog(SpecificComm(bot))