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/marker.go b/pagination/marker.go index e7688c2..f355afc 100644 --- a/pagination/marker.go +++ b/pagination/marker.go
@@ -32,3 +32,9 @@ return currentURL.String(), nil } + +// GetBody returns the linked page's body. This method is needed to satisfy the +// Page interface. +func (current MarkerPageBase) GetBody() interface{} { + return current.Body +}