10 lines
165 B
Go
10 lines
165 B
Go
|
package devicepath
|
||
|
|
||
|
func ParseNodeString(string) (DevicePathNode, error) {
|
||
|
return nil, nil
|
||
|
}
|
||
|
|
||
|
func ParsePathString(string) (DevicePath, error) {
|
||
|
return nil, nil
|
||
|
}
|