mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
5e6bc50b59
* Add pagination for admin social list * Use Paginated API for followers tab on frontend
7 lines
207 B
Go
7 lines
207 B
Go
package controllers
|
|
|
|
// PaginatedResponse is a structure for returning a total count with results.
|
|
type PaginatedResponse struct {
|
|
Total int `json:"total"`
|
|
Results interface{} `json:"results"`
|
|
}
|