Initial import
Some checks failed
Run tests / test (1.25) (push) Has been cancelled
Run tests / test (stable) (push) Has been cancelled

This commit is contained in:
2026-02-22 20:27:07 +01:00
commit fb898bb058
77 changed files with 2719 additions and 0 deletions

11
radio.go Normal file
View File

@@ -0,0 +1,11 @@
package hamview
import "git.maze.io/go/ham/radio"
type Radio struct {
*radio.Info
Protocol string `json:"protocol"`
ID string `json:"id"` // Unique identifier for the device
IsOnline bool `json:"is_online"`
}