(name string)
| 29 | type RealFileSystem struct{} |
| 30 | |
| 31 | func (RealFileSystem) Stat(name string) (os.FileInfo, error) { return os.Stat(name) } |
| 32 | func (RealFileSystem) Open(name string) (fs.File, error) { return os.Open(name) } |
| 33 | func (RealFileSystem) Getwd() (string, error) { return os.Getwd() } |
| 34 | func (RealFileSystem) Abs(path string) (string, error) { return filepath.Abs(path) } |