mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
17 lines
449 B
Go
17 lines
449 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/lyx0/nourybot/cmd/bot"
|
|
"github.com/lyx0/nourybot/pkg/utils"
|
|
)
|
|
|
|
func Thumbnail(channel string, target string, nb *bot.Bot) {
|
|
imageHeight := utils.GenerateRandomNumberRange(1040, 1080)
|
|
imageWidth := utils.GenerateRandomNumberRange(1890, 1920)
|
|
response := fmt.Sprintf("https://static-cdn.jtvnw.net/previews-ttv/live_user_%v-%vx%v.jpg", target, imageWidth, imageHeight)
|
|
|
|
nb.Send(channel, response)
|
|
}
|