12 lines
199 B
Go
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"`
|
|
}
|