Fix golang clients string -> int64 unmarshale error (#217)

This commit is contained in:
Janos Dobronszki
2021-09-27 12:12:33 +01:00
committed by GitHub
parent 6992fae6cf
commit 24c120896d
15 changed files with 42 additions and 37 deletions

View File

@@ -86,11 +86,11 @@ type Feed struct {
type FeedRequest struct {
// limit entries returned
Limit int64 `json:"limit"`
Limit int64 `json:"limit,string"`
// rss feed name
Name string `json:"name"`
// offset entries
Offset int64 `json:"offset"`
Offset int64 `json:"offset,string"`
}
type FeedResponse struct {