2021-07-26 17:26:39 -07:00
|
|
|
package scraper
|
|
|
|
|
2021-08-04 01:23:55 -07:00
|
|
|
type ImageID int64
|
2021-08-01 15:52:04 -07:00
|
|
|
|
2021-07-26 17:26:39 -07:00
|
|
|
type Image struct {
|
2024-03-08 17:22:52 -08:00
|
|
|
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"`
|
2021-07-26 17:26:39 -07:00
|
|
|
}
|