Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsOS ¶
IsOS returns true if the provided FS implementation is a wrapper around OS access obtained via OS().
Types ¶
type FS ¶
type FS interface { Open(name string) (fs.File, error) OpenFile(name string, flag int, perm fs.FileMode) (fs.File, error) Stat(name string) (fs.FileInfo, error) Remove(name string) error MkdirAll(path string, perm fs.FileMode) error }
FS is a superset of fs.FS that includes goodies that bento components specifically need.
Click to show internal directories.
Click to hide internal directories.