1
0
mirror of https://github.com/netbirdio/netbird.git synced 2025-05-02 15:24:39 +02:00
netbird/signal/main.go
Maycon Santos 80de6a75d5
Self contained signal cmd build ()
* Moved Signal CMD to Signal directory

* Removed config dir and fixed a parameter typo

* removed attempt to create ssl directory

* Update Signal build configuration

* move Signal documentation to its directory

* removed unused variables

* test build management and signal

* User run as subcommand to execute the signal daemon
2021-08-13 08:46:30 +02:00

13 lines
152 B
Go

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