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