diff options
author | Alan Pearce | 2025-01-29 23:03:49 +0100 |
---|---|---|
committer | Alan Pearce | 2025-01-30 12:33:36 +0100 |
commit | d2085746f3301d770230e7b52986db6994d5e35c (patch) | |
tree | 66f01fdd9bf3f8a51c33330bf76105ffbbb923fc /internal/storage/interface.go | |
parent | e7add352f8996658f64b04d040b31cb156ce09e8 (diff) | |
download | website-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.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 { |