mirror-nourybot-matrix/pkg/commands/preview.go

16 lines
384 B
Go
Raw Normal View History

2024-01-11 02:33:25 +01:00
package commands
import (
"fmt"
"github.com/lyx0/nourybot-matrix/pkg/common"
)
func Preview(channel string) string {
imageHeight := common.GenerateRandomNumberRange(1040, 1080)
imageWidth := common.GenerateRandomNumberRange(1890, 1920)
reply := fmt.Sprintf("https://static-cdn.jtvnw.net/previews-ttv/live_user_%s-%vx%v.jpg", channel, imageWidth, imageHeight)
return reply
}