all repos — gopipe @ d9ab51a35a4242ee8f1f5c0760ced3905f84e872

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)