From e2ccb18e22bb14960abb9cff7ef7a59599a86431 Mon Sep 17 00:00:00 2001 From: Martin Smith Date: Sat, 22 Mar 2025 18:42:12 +0000 Subject: [PATCH] Fix lint for missing const, after fixing godoc for the outer type. --- internal/restic/repository.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/restic/repository.go b/internal/restic/repository.go index f9e79ad75..8462e1b9e 100644 --- a/internal/restic/repository.go +++ b/internal/restic/repository.go @@ -83,6 +83,7 @@ const ( type WriteableFileType backend.FileType const ( + // WriteableSnapshotFile is the WriteableFileType for snapshots. WriteableSnapshotFile = WriteableFileType(SnapshotFile) )