mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
13 lines
281 B
Python
13 lines
281 B
Python
from .play import PlayCommand
|
|
|
|
|
|
class SoundcloudCommand(PlayCommand):
|
|
name: str = "soundcloud"
|
|
|
|
aliases = ["sc"]
|
|
|
|
description: str = "Cerca un video su SoundCloud e lo aggiunge alla coda della chat vocale."
|
|
|
|
syntax = "{ricerca}"
|
|
|
|
_URL_FORMAT = "scsearch:{url}"
|