mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
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
|
|
}
|