mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-15 23:06:38 +00:00
14 lines
158 B
Go
14 lines
158 B
Go
//go:build !windows && !darwin
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var updateCmd *cobra.Command
|
|
|
|
func isUpdateBinary() bool {
|
|
return false
|
|
}
|