mirror of
https://github.com/marcopiovanello/yt-dlp-web-ui.git
synced 2026-07-25 06:54:30 +00:00
f4a0f688af
* backend code * fixed twitch authentication
21 lines
285 B
Go
21 lines
285 B
Go
package twitch
|
|
|
|
import "time"
|
|
|
|
type StreamInfo struct {
|
|
ID string
|
|
UserName string
|
|
Title string
|
|
GameName string
|
|
StartedAt time.Time
|
|
IsLive bool
|
|
}
|
|
|
|
type VodInfo struct {
|
|
ID string
|
|
Title string
|
|
URL string
|
|
Duration string
|
|
CreatedAt time.Time
|
|
}
|