0
owncast/webserver/utils/pagination.go

8 lines
201 B
Go

package utils
// PaginatedResponse is a structure for returning a total count with results.
type PaginatedResponse struct {
Results interface{} `json:"results"`
Total int `json:"total"`
}