20 lines
409 B
Python
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)) |