8 lines
100 B
Go
8 lines
100 B
Go
|
package devicepath
|
||
|
|
||
|
type DevicePathNode interface{}
|
||
|
|
||
|
type DevicePath interface {
|
||
|
String() string
|
||
|
}
|