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

20 lines
409 B
Python

import json
import discord
import requests
import shutil
from discord.ext import commands
## Xeno Discord PY Bot
### Radar Cog and Functionality
#make a cog.
class Radar(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command(name='radar', pass_context=True)
async def radarget(ctx, *args):
print (f'stuff')
def setup(bot):
bot.add_cog(Radar(bot))