mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
32 lines
520 B
Go
32 lines
520 B
Go
|
// +build go1.16
|
||
|
|
||
|
package render
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"io/fs"
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
// EmbedFileSystem implements FileSystem on top of an embed.FS
|
||
|
type EmbedFileSystem struct {
|
||
|
embed.FS
|
||
|
}
|
||
|
|
||
|
var _ FileSystem = &EmbedFileSystem{}
|
||
|
|
||
|
func (e *EmbedFileSystem) Walk(root string, walkFn filepath.WalkFunc) error {
|
||
|
return fs.WalkDir(e.FS, root, func(path string, d fs.DirEntry, _ error) error {
|
||
|
if d == nil {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
info, err := d.Info()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
return walkFn(path, info, err)
|
||
|
})
|
||
|
}
|