We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a89e2 commit 6c0d748Copy full SHA for 6c0d748
1 file changed
backend/cmd/main.go
@@ -53,6 +53,7 @@ import (
53
"github.com/google/gopacket/pcap"
54
"github.com/jmaralo/sntp"
55
"github.com/pelletier/go-toml/v2"
56
+ "github.com/pkg/browser"
57
trace "github.com/rs/zerolog/log"
58
)
59
@@ -324,6 +325,9 @@ func main() {
324
325
}()
326
}
327
328
+ browser.OpenURL("http://" + config.Server["ethernet-view"].Addr)
329
+ browser.OpenURL("http://" + config.Server["control-station"].Addr)
330
+
331
interrupt := make(chan os.Signal, 1)
332
signal.Notify(interrupt, os.Interrupt)
333
0 commit comments