gotosocial/internal/api/model/timeline.go

9 lines
267 B
Go
Raw Normal View History

2021-06-07 20:20:36 +02:00
package model
2021-06-13 18:41:42 +02:00
// StatusTimelineResponse wraps a slice of statuses, ready to be serialized, along with the Link
// header for the previous and next queries, to be returned to the client.
2021-06-07 20:20:36 +02:00
type StatusTimelineResponse struct {
2021-06-11 18:38:58 +02:00
Statuses []*Status
2021-06-07 20:20:36 +02:00
LinkHeader string
}