filelist: add FileLister interface

This commit is contained in:
Clayton Craft
2023-02-11 16:03:34 -08:00
parent 7e80107bbe
commit 73fd85f68c

View File

@@ -0,0 +1,5 @@
package filelist
type FileLister interface {
List() ([]string, error)
}