This commit is contained in:
Gregory Salaun 2024-11-17 21:08:10 +07:00
parent 1b8c97f5e7
commit 744fdcd0d9
4 changed files with 13 additions and 9 deletions

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
build:
go build -o bin/
run:
go run .

9
app.go
View File

@ -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{

View File

@ -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

View File

@ -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()
} }