vfs

package
v0.1.12 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 13, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FakeFS

type FakeFS struct {
	FileContents map[string]ReadFileResult
	GlobResults  map[string]GlobResult
}

func (FakeFS) Glob

func (ff FakeFS) Glob(pattern string) (matches []string, err error)

func (FakeFS) ReadFile

func (ff FakeFS) ReadFile(path string) ([]byte, error)

type GlobResult

type GlobResult struct {
	Matches []string
	Err     error
}

type LinuxFS

type LinuxFS struct{}

func (LinuxFS) Glob

func (_ LinuxFS) Glob(pattern string) ([]string, error)

func (LinuxFS) ReadFile

func (_ LinuxFS) ReadFile(path string) ([]byte, error)

type ReadFileResult

type ReadFileResult struct {
	Data []byte
	Err  error
}

type VFS

type VFS interface {
	ReadFile(path string) ([]byte, error)
	Glob(pattern string) ([]string, error)
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL