Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file.go « vfs « internal - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5260c847e3e5c18151ea5227b27403b2309bde04 (plain)
1
2
3
4
5
6
7
8
9
10
package vfs

import "io"

// File represents an open file, which will typically be the response body of a Pages request.
type File interface {
	io.Reader
	io.Seeker
	io.Closer
}