15 lines
312 B
Python
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)) |