mirror of
https://github.com/miniflux/v2.git
synced 2025-08-26 18:21:01 +00:00
Reformat some Go files
When working on #994 I noticed that some Go files are not formatted with `gofmt`. This PR fixes this.
This commit is contained in:
parent
7c44238bae
commit
4464802947
7 changed files with 19 additions and 19 deletions
|
@ -15,17 +15,17 @@ import (
|
|||
|
||||
// FeedQueryBuilder builds a SQL query to fetch feeds.
|
||||
type FeedQueryBuilder struct {
|
||||
store *Storage
|
||||
args []interface{}
|
||||
conditions []string
|
||||
order string
|
||||
direction string
|
||||
limit int
|
||||
offset int
|
||||
withCounters bool
|
||||
counterJoinFeeds bool
|
||||
counterArgs []interface{}
|
||||
counterConditions []string
|
||||
store *Storage
|
||||
args []interface{}
|
||||
conditions []string
|
||||
order string
|
||||
direction string
|
||||
limit int
|
||||
offset int
|
||||
withCounters bool
|
||||
counterJoinFeeds bool
|
||||
counterArgs []interface{}
|
||||
counterConditions []string
|
||||
}
|
||||
|
||||
// NewFeedQueryBuilder returns a new FeedQueryBuilder.
|
||||
|
@ -304,4 +304,4 @@ func (f *FeedQueryBuilder) fetchFeedCounter() (unreadCounters map[int64]int, rea
|
|||
}
|
||||
|
||||
return readCounters, unreadCounters, nil
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue