Add Like model

This commit is contained in:
Alessio 2023-06-26 12:17:46 -03:00
parent 79a4b87f3a
commit d0ab385c52

9
scraper/like.go Normal file
View File

@ -0,0 +1,9 @@
package scraper
type LikeSortID int64
type Like struct {
SortID LikeSortID `db:"sort_order"`
UserID UserID `db:"user_id"`
TweetID TweetID `db:"tweet_id"`
}