mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-22 23:35:26 +00:00
Fix golang clients string -> int64 unmarshale error (#217)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user