mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 18:19:36 +00:00
12 lines
158 B
Go
12 lines
158 B
Go
package api
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
// MachineAttrs collects machine identifiers and attributes.
|
|
type MachineAttrs struct {
|
|
UUID string
|
|
MAC net.HardwareAddr
|
|
}
|