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