mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
22 lines
431 B
Go
22 lines
431 B
Go
|
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)
|
||
|
}
|