| 18 | import "github.com/spf13/cobra" |
| 19 | |
| 20 | type PaginationOpts struct { |
| 21 | // Number of items to show |
| 22 | Limit int |
| 23 | DefaultLimit int |
| 24 | NextCursor, PrevCursor string |
| 25 | } |
| 26 | |
| 27 | var _ Interface = (*PaginationOpts)(nil) |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected