1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-03-01 16:31:20 +01:00
netbird/client/main.go
2023-05-18 19:47:36 +02:00

14 lines
147 B
Go

package main
import (
"os"
"github.com/netbirdio/netbird/client/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
os.Exit(1)
}
}