netbird/client/main.go

13 lines
146 B
Go
Raw Normal View History

2021-05-01 12:45:37 +02:00
package main
import (
2022-09-05 02:03:16 +02:00
"github.com/netbirdio/netbird/client/cmd"
"os"
)
2021-05-01 12:45:37 +02:00
func main() {
2022-09-05 02:03:16 +02:00
if err := cmd.Execute(); err != nil {
os.Exit(1)
2021-05-01 12:45:37 +02:00
}
}