forked from mirrors/homebox
30014a77ca
* expanded search for items * range domain from email to example * implement pagination for items
12 lines
252 B
Go
12 lines
252 B
Go
package repo
|
|
|
|
type PaginationResult[T any] struct {
|
|
Page int `json:"page"`
|
|
PageSize int `json:"pageSize"`
|
|
Total int `json:"total"`
|
|
Items []T `json:"items"`
|
|
}
|
|
|
|
func calculateOffset(page, pageSize int) int {
|
|
return (page - 1) * pageSize
|
|
}
|