gotosocial/internal/api/model/timeline.go
2021-06-13 18:41:42 +02:00

8 lines
267 B
Go

package model
// 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.
type StatusTimelineResponse struct {
Statuses []*Status
LinkHeader string
}