diff -r ae2cbcf18b55 -r 5f922977d7c7 madon.go --- 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