Updaterer implements the check and update methods
| 31 | |
| 32 | // Updaterer implements the check and update methods |
| 33 | type Updaterer interface { |
| 34 | CheckForNewUpdate() |
| 35 | Update() |
| 36 | } |
| 37 | |
| 38 | // NewUpdater creates a new updater |
| 39 | func NewUpdater(cmn *common.Common, config config.AppConfigurer, osCommand *oscommands.OSCommand) (*Updater, error) { |
no outgoing calls
no test coverage detected