Searched defs:osFS (Results 1 – 1 of 1) sorted by relevance
33 type osFS struct{} struct35 func (osFS) Open(path string) (fs.File, error) { return os.Open(path) }36 func (osFS) Stat(path string) (os.FileInfo, error) { return os.Stat(path) }37 func (osFS) ReadFile(path string) ([]byte, error) { return os.ReadFile(path) }