switch to sqlite
1 file changed, 1 insertion(+), 1 deletion(-)
changed files
M internal/storage/interface.go → internal/storage/interface.go
@@ -6,7 +6,7 @@ ) type Reader interface { GetFile(path string) (*File, error) - CanonicalisePath(path string) (cPath string, differs bool) + CanonicalisePath(path string) (string, bool) } type Writer interface {