11 lines
134 B
Go
Raw Normal View History

package scraper
2021-08-01 15:52:04 -07:00
type VideoID int
type Video struct {
2021-08-01 15:52:04 -07:00
ID VideoID
TweetID TweetID
Filename string
IsDownloaded bool
}