mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
13 lines
272 B
Python
13 lines
272 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}"
|
|
|
|
_URL_FORMAT = "ytsearch:{url}"
|