mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-22 02:06:39 +00:00
11 lines
165 B
Go
11 lines
165 B
Go
//go:build freebsd
|
|
|
|
package updatemanager
|
|
|
|
import "context"
|
|
|
|
func triggerUpdate(ctx context.Context, targetVersion string) error {
|
|
// TODO: Implement
|
|
return nil
|
|
}
|