Updater is a simple upgradable file interface.
| 56 | |
| 57 | // Updater is a simple upgradable file interface. |
| 58 | type Updater interface { |
| 59 | IsUpToDate() (bool, error) |
| 60 | Upgrade() error |
| 61 | } |
| 62 | |
| 63 | // CLI is information about the CLI itself. |
| 64 | type CLI struct { |
no outgoing calls
no test coverage detected