13 lines
158 B
Go
13 lines
158 B
Go
package repository
|
|
|
|
type Pagination struct {
|
|
PageSize int
|
|
Page int
|
|
}
|
|
|
|
func (p *Pagination) New() *Pagination {
|
|
p.PageSize = 50
|
|
p.Page = 1
|
|
return p
|
|
}
|