all repos — gopipe @ 86279f46df44a80cc8795bcdd3c0da84d1c04f87

Embed YouTube videos on Telegram, Discord and more!

src/globals/globals.go (view raw)

 1package globals
 2
 3import (
 4	"time"
 5
 6	"github.com/birabittoh/myks"
 7	"github.com/kkdai/youtube/v2"
 8)
 9
10var (
11	Debug bool
12	Port  string
13
14	YT = youtube.Client{}
15	KS = myks.New[youtube.Video](3 * time.Hour)
16)