2024-05-28 21:55:42 -07:00

10 lines
190 B
Go

package scraper
type BookmarkSortID int64
type Bookmark struct {
SortID BookmarkSortID `db:"sort_order"`
UserID UserID `db:"user_id"`
TweetID TweetID `db:"tweet_id"`
}