madon.go
changeset 149 5f922977d7c7
parent 145 d7ccfe67fa9e
child 151 f87b6ca9de6d
--- a/madon.go	Fri Apr 28 13:28:16 2017 +0200
+++ b/madon.go	Fri Apr 28 15:43:11 2017 +0200
@@ -11,6 +11,11 @@
 	"errors"
 )
 
+// LimitParams contains common limit/paging options for the Mastodon REST API
+type LimitParams struct {
+	SinceID, MaxID, Limit int
+}
+
 // apiCallParams is a map with the parameters for an API call
 type apiCallParams map[string]string