forked from mirrors/homebox
cd82fe0d89
* remove empty services * remove old factory * remove old static files * cleanup more duplicate service code * file/folder reorg
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
|
|
}
|