You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
431 B
21 lines
431 B
package render
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
)
|
|
|
|
type FileSystem interface {
|
|
Walk(root string, walkFn filepath.WalkFunc) error
|
|
ReadFile(filename string) ([]byte, error)
|
|
}
|
|
|
|
type LocalFileSystem struct{}
|
|
|
|
func (LocalFileSystem) Walk(root string, walkFn filepath.WalkFunc) error {
|
|
return filepath.Walk(root, walkFn)
|
|
}
|
|
|
|
func (LocalFileSystem) ReadFile(filename string) ([]byte, error) {
|
|
return ioutil.ReadFile(filename)
|
|
}
|
|
|