File: file.go

package info (click to toggle)
golang-github-mitchellh-go-fs 0.0~git20150611.0.a34c1b9-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 160 kB
  • ctags: 141
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 117 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
package fs

import "io"

// File is a single file within a filesystem.
type File interface {
	io.Reader
	io.Writer
}