blob: a79a92096d12a3fcc519416c8d86af38577dc3dd [file] [log] [blame]
Sergiusz Bazanskic881cf32020-04-08 20:03:12 +02001package source
2
3type Source interface {
4 IsFile(path string) (bool, error)
5 ReadFile(path string) ([]byte, error)
6 IsDirectory(path string) (bool, error)
7
8 CacheSet(dependencies []string, key string, value interface{})
9 CacheGet(key string) interface{}
10}