Files
hamview/aprsis.go
maze fb898bb058
Some checks failed
Run tests / test (1.25) (push) Has been cancelled
Run tests / test (stable) (push) Has been cancelled
Initial import
2026-02-22 20:27:07 +01:00

12 lines
199 B
Go

package hamview
const (
DefaultAPRSISListen = ":14580"
DefaultAPRSISServer = "rotate.aprs2.net:14580"
)
type APRSISConfig struct {
Listen string `yaml:"listen"`
Server string `yaml:"server"`
}