mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 16:26:38 +00:00
11 lines
182 B
Go
11 lines
182 B
Go
//go:build linux
|
|
|
|
package updatemanager
|
|
|
|
import "context"
|
|
|
|
func (u *UpdateManager) triggerUpdate(ctx context.Context, targetVersion string) error {
|
|
// TODO: Implement
|
|
return nil
|
|
}
|