From 1a3172dc6ff18649fd1cb7b3a8a073f3ca909ddb Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Fri, 7 Nov 2025 12:19:28 -0500 Subject: [PATCH] docs: Updated comments on `SshKeyPair`. --- app/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/config.go b/app/config.go index e10279d..b2a9cfd 100644 --- a/app/config.go +++ b/app/config.go @@ -18,6 +18,7 @@ type Config struct { ScanConfig scanConfig `json:"scan"` } +// Used by age to encrypt and decrypt the database. type SshKeyPair struct { Private string `json:"private"` // Path to the private key file Public string `json:"public"` // Path to the public key file