1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-03-21 19:07:18 +01:00
netbird/client/main.go

14 lines
147 B
Go
Raw Normal View History

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