mirror-nourybot/pkg/commands/personal/streamlink.go

11 lines
324 B
Go
Raw Normal View History

package personal
2021-11-06 20:58:36 +01:00
import "github.com/lyx0/nourybot/cmd/bot"
2021-11-11 20:28:32 +01:00
// Streamlink returns the streamlink config.
2021-11-06 20:58:36 +01:00
func Streamlink(target string, nb *bot.Bot) {
reply := `https://haste.zneix.eu/udajirixep put this in ~/.config/streamlink/config on Linux (or %appdata%\streamlink\streamlinkrc on Windows)`
nb.Send(target, reply)
}