mirror of
https://github.com/netbirdio/netbird.git
synced 2025-08-17 10:31:45 +02:00
11 lines
184 B
Go
11 lines
184 B
Go
//go:build freebsd
|
|
|
|
package updatemanager
|
|
|
|
import "context"
|
|
|
|
func (u *UpdateManager) triggerUpdate(ctx context.Context, targetVersion string) error {
|
|
// TODO: Implement
|
|
return nil
|
|
}
|