mirror of
https://github.com/netbirdio/netbird.git
synced 2026-03-31 06:24:18 -04: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
|
|
}
|