mirror of
https://github.com/byReqz/go-etcher.git
synced 2024-11-21 22:43:14 +00:00
12 lines
238 B
Go
12 lines
238 B
Go
package etcher
|
|
|
|
type Blockdevice struct {
|
|
Path string
|
|
Size int
|
|
Type string
|
|
//ID string
|
|
}
|
|
|
|
// CheckHash checks if the given file has been properly applied to the given blockdevice.
|
|
//func CheckHash(f os.File, b Blockdevice) error {}
|