Fixed pager

This commit is contained in:
James Mills
2021-02-03 01:56:56 +10:00
parent 382fd677c3
commit 6dc7510e8f
6 changed files with 37 additions and 20 deletions

View File

@@ -0,0 +1,8 @@
package internal
type IntAdapter struct {
N int
}
func (a IntAdapter) Nums() int { return a.N }
func (a IntAdapter) Slice(offset, length int, data interface{}) error { return nil }