about summary refs log tree commit diff stats
path: root/internal/storage/interface.go
diff options
context:
space:
mode:
authorAlan Pearce2025-01-29 23:03:49 +0100
committerAlan Pearce2025-01-30 12:33:36 +0100
commitd2085746f3301d770230e7b52986db6994d5e35c (patch)
tree66f01fdd9bf3f8a51c33330bf76105ffbbb923fc /internal/storage/interface.go
parente7add352f8996658f64b04d040b31cb156ce09e8 (diff)
downloadwebsite-d2085746f3301d770230e7b52986db6994d5e35c.tar.lz
website-d2085746f3301d770230e7b52986db6994d5e35c.tar.zst
website-d2085746f3301d770230e7b52986db6994d5e35c.zip
switch to sqlite
Diffstat (limited to 'internal/storage/interface.go')
-rw-r--r--internal/storage/interface.go2
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 {