blob: a79a92096d12a3fcc519416c8d86af38577dc3dd [file] [log] [blame]
package source
type Source interface {
IsFile(path string) (bool, error)
ReadFile(path string) ([]byte, error)
IsDirectory(path string) (bool, error)
CacheSet(dependencies []string, key string, value interface{})
CacheGet(key string) interface{}
}