mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
13 lines
325 B
Go
13 lines
325 B
Go
|
package commands
|
||
|
|
||
|
import "github.com/lyx0/nourybot/cmd/bot"
|
||
|
|
||
|
func Rave(target string, nb *bot.Bot) {
|
||
|
reply := `https://www.youtube.com/playlist?list=PLY9LTYa8xnQKrug3VvgkPWqmpmXSKAYPe`
|
||
|
reply2 := `https://www.youtube.com/playlist?list=PLWwCeXamjNuZ2ZNJiNwvdmVT9TtULsHc6`
|
||
|
|
||
|
nb.Send(target, reply)
|
||
|
nb.Send(target, reply2)
|
||
|
|
||
|
}
|