type Pager interface {
// from and to are numbers in the ordered list that is paged// limit is how many can be read per page// the pager returns how many where read// returning a number less than the limit will// result in the pagination to stop
Page(from, to, limit int64) (int, error)
}