aboutsummaryrefslogtreecommitdiff
path: root/pkg/components/filesystem/model.go
blob: 2caed8248292390e1d3c827855c977c5d7a38a89 (plain)
1
2
3
4
5
6
7
8
9
10
package filesystem

import "io/fs"

type (
	Repository interface {
		List(path string) ([]fs.FileInfo, error)
		Stat(path string) (fs.FileInfo, error)
	}
)