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