up
This commit is contained in:
parent
1b8c97f5e7
commit
744fdcd0d9
9
app.go
9
app.go
@ -38,11 +38,12 @@ func NewApp() *Application {
|
|||||||
|
|
||||||
Sep := widget.NewSeparator()
|
Sep := widget.NewSeparator()
|
||||||
|
|
||||||
SpotLabelDX := canvas.NewText("t", color.Black)
|
SpotLabelDX := canvas.NewText("DX: ", color.Black)
|
||||||
SpotLabelFreqMhz := canvas.NewText("t", color.Black)
|
SpotLabelFreqMhz := canvas.NewText("Freq: ", color.Black)
|
||||||
SpotLabelBand := canvas.NewText("t", color.Black)
|
SpotLabelBand := canvas.NewText("Band: ", color.Black)
|
||||||
|
Spot := container.NewHBox(SpotLabelDX, SpotLabelFreqMhz, SpotLabelBand)
|
||||||
|
|
||||||
content := container.NewVBox(servicesLabel, Sep, TCPClientAll, FlexRadioAll, Sep, SpotLabelDX, SpotLabelFreqMhz, SpotLabelBand)
|
content := container.NewVBox(servicesLabel, Sep, TCPClientAll, FlexRadioAll, Sep, Spot)
|
||||||
w.SetContent(content)
|
w.SetContent(content)
|
||||||
|
|
||||||
app := &Application{
|
app := &Application{
|
||||||
|
@ -2,7 +2,6 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"log"
|
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
@ -51,13 +50,13 @@ func NewConfig(configPath string) *Config {
|
|||||||
|
|
||||||
file, err := os.Open(configPath)
|
file, err := os.Open(configPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Println("could not open config file")
|
Log.Errorln("could not open config file")
|
||||||
}
|
}
|
||||||
defer file.Close()
|
defer file.Close()
|
||||||
d := yaml.NewDecoder(file)
|
d := yaml.NewDecoder(file)
|
||||||
|
|
||||||
if err := d.Decode(&Cfg); err != nil {
|
if err := d.Decode(&Cfg); err != nil {
|
||||||
log.Println("could not decod config file")
|
Log.Errorln("could not decod config file")
|
||||||
}
|
}
|
||||||
|
|
||||||
return Cfg
|
return Cfg
|
||||||
|
4
main.go
4
main.go
@ -73,8 +73,6 @@ func main() {
|
|||||||
go TCPClient.StartClient()
|
go TCPClient.StartClient()
|
||||||
go TCPServer.StartServer()
|
go TCPServer.StartServer()
|
||||||
|
|
||||||
Application.Start()
|
|
||||||
|
|
||||||
// Gracely closing all connextions if signal is received
|
// Gracely closing all connextions if signal is received
|
||||||
go func() {
|
go func() {
|
||||||
for sig := range sigCh {
|
for sig := range sigCh {
|
||||||
@ -97,4 +95,6 @@ func main() {
|
|||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
Application.Start()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user