From fe78ca88413ed1dee104c50be9994284ee1090f5 Mon Sep 17 00:00:00 2001 From: Alex Mickelson Date: Sat, 8 Mar 2025 18:32:00 -0700 Subject: [PATCH] url command --- discord-bot/main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord-bot/main.py b/discord-bot/main.py index f91eec9..4ef25ca 100644 --- a/discord-bot/main.py +++ b/discord-bot/main.py @@ -81,6 +81,10 @@ async def play(ctx: commands.Context, url: str): add_to_queue(url) handle_new_song_on_queue() +@bot.command(name="url") +async def url(ctx: commands.Context): + await ctx.send("http://server.alexmickelson.guru:5677/") + @bot.command(pass_context=True) async def stop(ctx: commands.Context): voice_client = get_voice_client()