package repository type Pagination struct { PageSize int Page int } func NewPagination() Pagination { return Pagination{ PageSize: 50, Page: 1, } }