diff options
Diffstat (limited to 'internal/storage/interface.go')
-rw-r--r-- | internal/storage/interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |