package repository type Pagination struct { PageSize int Page int } func (p *Pagination) New() *Pagination { p.PageSize = 50 p.Page = 1 return p }