diff options
author | Joe Chen <jc@unknwon.io> | 2023-02-08 13:55:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-08 13:55:54 +0800 |
commit | 8350daf505b837984397679f07ccc2324b4d2451 (patch) | |
tree | 19d3bd7b8dc8370a8973614a74537bddc5f618a6 /internal/db/public_keys.go | |
parent | 133b9d90441008ee175e1f8e6369e06309e1392a (diff) |
refactor(db): merge relation stores into entity stores (#7341)
Diffstat (limited to 'internal/db/public_keys.go')
-rw-r--r-- | internal/db/public_keys.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/db/public_keys.go b/internal/db/public_keys.go index d2f8307d..71b0ed99 100644 --- a/internal/db/public_keys.go +++ b/internal/db/public_keys.go @@ -16,8 +16,6 @@ import ( ) // PublicKeysStore is the persistent interface for public keys. -// -// NOTE: All methods are sorted in alphabetical order. type PublicKeysStore interface { // RewriteAuthorizedKeys rewrites the "authorized_keys" file under the SSH root // path with all public keys stored in the database. |