mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
14 lines
212 B
Go
14 lines
212 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
log "github.com/sirupsen/logrus"
|
||
|
|
||
|
"github.com/netbirdio/netbird/relay/cmd"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
if err := cmd.Execute(); err != nil {
|
||
|
log.Fatalf("failed to execute command: %v", err)
|
||
|
}
|
||
|
}
|