mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
14 lines
147 B
Go
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)
|
|
}
|
|
}
|