commit | db319f13f629cc3ee47d1278115818fcc98a7737 | [log] [tgz] |
---|---|---|
author | Jon Perritt <jrperritt@gmail.com> | Tue Feb 17 19:32:40 2015 -0700 |
committer | Jon Perritt <jrperritt@gmail.com> | Wed Feb 18 10:38:00 2015 -0700 |
tree | 80a9244143fa7e1662f6506a0f1ea13c33381a65 | |
parent | ea5b3ff6c5b56c0f342dd19e6a7496779b6c2bb0 [diff] [blame] |
all page marker/single/linked ops and unit tests
diff --git a/pagination/linked.go b/pagination/linked.go index 461fa49..e9bd8de 100644 --- a/pagination/linked.go +++ b/pagination/linked.go
@@ -59,3 +59,9 @@ } } } + +// GetBody returns the linked page's body. This method is needed to satisfy the +// Page interface. +func (current LinkedPageBase) GetBody() interface{} { + return current.Body +}