diff options
| author | Jeff Carr <[email protected]> | 2024-02-18 15:09:48 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-18 15:09:48 -0600 |
| commit | 1bafc298d3b37ca863ce58aba43c65081766f127 (patch) | |
| tree | 7eb6e7486fea0518ab9abb2a9944f57e655b9a02 /new.go | |
| parent | 6a6ebf78b829e4de858a1d1fb6d779af8e493954 (diff) | |
guireleaser runs again
Diffstat (limited to 'new.go')
| -rw-r--r-- | new.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -15,14 +15,16 @@ func init() { windowMap = make(map[string]*RepoStatus) } -func ListAll() { +// deprecate this +func ListAllOld() { for path, rs := range windowMap { log.Warn(rs.GetMasterVersion(), path) } } // returns the object for the path -func FindPath(path string) *RepoStatus { +// deprecate this +func FindPathOld(path string) *RepoStatus { if windowMap[path] == nil { log.Log(INFO, "FindPath() not initialized yet", path) return nil |
