1
0
Fork 1
mirror of https://github.com/hay-kot/homebox.git synced 2025-01-11 16:27:17 +00:00
homebox/backend/internal/data/repo/pagination.go
Hayden cd82fe0d89
refactor: remove empty services ()
* remove empty services

* remove old factory

* remove old static files

* cleanup more duplicate service code

* file/folder reorg
2022-10-29 20:05:38 -08:00

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
}