Versions in this module Expand all Collapse all v1 v1.0.0 Feb 12, 2020 Changes in this version + type Dir string + func (d Dir) Open(name string) (http.File, error) + type File struct + Contents []byte + FileName string + Reader *bytes.Reader + Stats os.FileInfo + func Open(fileName string) (*File, error) + func (f *File) Close() error + func (f *File) IsDir() bool + func (f *File) ModTime() time.Time + func (f *File) Mode() os.FileMode + func (f *File) Name() string + func (f *File) Read(p []byte) (n int, err error) + func (f *File) Readdir(count int) ([]os.FileInfo, error) + func (f *File) Seek(offset int64, whence int) (int64, error) + func (f *File) Size() int64 + func (f *File) Stat() (os.FileInfo, error) + func (f *File) Sys() interface{}