10 lines
190 B
Go
Raw Normal View History

2024-05-28 21:55:42 -07:00
package scraper
type BookmarkSortID int64
type Bookmark struct {
SortID BookmarkSortID `db:"sort_order"`
UserID UserID `db:"user_id"`
TweetID TweetID `db:"tweet_id"`
}