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