Files
ctrld/internal/system/metadata.go
2025-12-18 17:10:39 +07:00

8 lines
188 B
Go

package system
// ChassisInfo represents the structural framework of a device, specifying its type and manufacturer information.
type ChassisInfo struct {
Type string
Vendor string
}