Skip to content

Commit

Permalink
fix: PaperListResultItem no longer implements Stringer
Browse files Browse the repository at this point in the history
  • Loading branch information
kkweon committed May 30, 2021
1 parent 041e281 commit ed264d5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions models/paper_list_result.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package models

import "fmt"

// PaperListResult is the result of PaperListResult() function.
type PaperListResult struct {
Count int64 `json:"count"`
Expand All @@ -10,8 +8,6 @@ type PaperListResult struct {
Results []PaperListResultItem `json:"results"`
}

var _ fmt.Stringer = (*PaperListResultItem)(nil)

type PaperListResultItem struct {
ID string `json:"id"`
ArxivID *string `json:"arxiv_id"`
Expand All @@ -26,4 +22,4 @@ type PaperListResultItem struct {
ConferenceURLAbs *string `json:"conference_url_abs"`
ConferenceURLPDF *string `json:"conference_url_pdf"`
Proceeding *string `json:"proceeding"`
}
}

0 comments on commit ed264d5

Please sign in to comment.