From d2085746f3301d770230e7b52986db6994d5e35c Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Wed, 29 Jan 2025 23:03:49 +0100 Subject: switch to sqlite --- internal/storage/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/storage/interface.go') diff --git a/internal/storage/interface.go b/internal/storage/interface.go index c167a49..282a33b 100644 --- a/internal/storage/interface.go +++ b/internal/storage/interface.go @@ -6,7 +6,7 @@ import ( type Reader interface { GetFile(path string) (*File, error) - CanonicalisePath(path string) (cPath string, differs bool) + CanonicalisePath(path string) (string, bool) } type Writer interface { -- cgit 1.4.1