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

import "io/fs"

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