7 lines
116 B
Go
7 lines
116 B
Go
|
|
package local
|
||
|
|
|
||
|
|
// Medium implements the io.Medium interface for the local disk.
|
||
|
|
type Medium struct {
|
||
|
|
root string
|
||
|
|
}
|