mirror of
https://github.com/postmannen/ctrl.git
synced 2025-01-08 05:09:15 +00:00
34 lines
746 B
Go
34 lines
746 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"log"
|
||
|
"os"
|
||
|
|
||
|
"github.com/RaaLabs/steward"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
nodeName := flag.String("node", "0", "some unique string to identify this Edge unit")
|
||
|
brokerAddress := flag.String("brokerAddress", "0", "the address of the message broker")
|
||
|
modePublisher := flag.Bool("modePublisher", false, "set to true if it should be able to publish")
|
||
|
modeSubscriber := flag.Bool("modeSubscriber", false, "set to true if it should be able to subscribe")
|
||
|
flag.Parse()
|
||
|
|
||
|
s, err := steward.NewServer(*brokerAddress, *nodeName)
|
||
|
if err != nil {
|
||
|
log.Printf("error: failed to connect to broker: %v\n", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
|
||
|
if *modePublisher {
|
||
|
go s.RunPublisher()
|
||
|
}
|
||
|
|
||
|
if *modeSubscriber {
|
||
|
go s.RunSubscriber()
|
||
|
}
|
||
|
|
||
|
select {}
|
||
|
}
|