()
| 20 | } |
| 21 | |
| 22 | func NewManager() *Manager { |
| 23 | return &Manager{ |
| 24 | client: &http.Client{}, //nolint:exhaustruct |
| 25 | cache: nil, |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | func (mgr *Manager) filterReleases(releases Releases, version string) Releases { |
| 30 | if !strings.HasPrefix(version, "v") { |
no outgoing calls
no test coverage detected