all_platform/vendor/github.com/super-l/machine-code/interface.go
2025-03-16 23:57:25 +08:00

12 lines
302 B
Go

package machine_code
import "github.com/super-l/machine-code/types"
type OsMachineInterface interface {
GetMachine() (types.MachineInformation, []error)
GetBoardSerialNumber() (string, error)
GetCpuSerialNumber() (string, error)
GetDiskSerialNumber() (string, error)
GetUUID() (string, error)
}