13 lines
379 B
Go
13 lines
379 B
Go
|
package models
|
||
|
|
||
|
type AnthroveUserRelationship struct {
|
||
|
UserID string `json:"user_id"`
|
||
|
Username string `json:"username"`
|
||
|
ScrapeTimeInterval string `json:"scrape_time_interval"`
|
||
|
Source AnthroveSource `json:"source"`
|
||
|
}
|
||
|
type AnthrovePostRelationship struct {
|
||
|
PostID string `json:"post_id"`
|
||
|
Url string `json:"url"`
|
||
|
}
|