mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
12 lines
239 B
Go
12 lines
239 B
Go
package updatemanager
|
|
|
|
import v "github.com/hashicorp/go-version"
|
|
|
|
type UpdateInterface interface {
|
|
StopWatch()
|
|
SetDaemonVersion(newVersion string) bool
|
|
SetOnUpdateListener(updateFn func())
|
|
LatestVersion() *v.Version
|
|
StartFetcher()
|
|
}
|