mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
14 lines
315 B
Python
14 lines
315 B
Python
from .play import PlayCommand
|
|
|
|
|
|
class YoutubeCommand(PlayCommand):
|
|
name: str = "youtube"
|
|
|
|
aliases = ["yt"]
|
|
|
|
description: str = "Cerca un video su YouTube e lo aggiunge alla coda della chat vocale."
|
|
|
|
syntax = "{ricerca}"
|
|
|
|
async def get_url(self, args):
|
|
return f"ytsearch:{args.joined()}"
|