2024-12-21 09:15:02 -08:00

15 lines
412 B
Go

package scraper
type ImageID int64
type Image struct {
ID ImageID `db:"id"`
TweetID TweetID `db:"tweet_id"`
DMMessageID DMMessageID `db:"chat_message_id"`
Width int `db:"width"`
Height int `db:"height"`
RemoteURL string `db:"remote_url"`
LocalFilename string `db:"local_filename"`
IsDownloaded bool `db:"is_downloaded"`
}