mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
c3bc85e22d
rename the go module to netbirdio/netbird as part of our rebranding.
13 lines
146 B
Go
13 lines
146 B
Go
package main
|
|
|
|
import (
|
|
"github.com/netbirdio/netbird/signal/cmd"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
if err := cmd.Execute(); err != nil {
|
|
os.Exit(1)
|
|
}
|
|
}
|