From db993ab56d4ab05f9474cacd89fc3bbc49a301d8 Mon Sep 17 00:00:00 2001 From: Cam Hutchison Date: Tue, 27 Aug 2024 18:39:47 +1000 Subject: [PATCH] fixup! Add first cut of git-credential-fdoss Explain what SecretService implements and why a bit better. Addresses: https://github.com/foxygoat/git-credential-fdoss/pull/3#discussion_r1708300057 --- dbus.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dbus.go b/dbus.go index 1f4cb2d..9c019ab 100644 --- a/dbus.go +++ b/dbus.go @@ -8,8 +8,9 @@ import ( ) // SecretService implements a client of the freedesktop.org DBus [Secret -// Service Specification] as needed for git-credential-fdoss to do what it -// needs to do. It is not a full implementation of the API. +// Service Specification] implementing only the functionality needed for an +// implementation of a git credential helper. It is not a full client +// implementation of the API. // // It supports adding secrets, looking them up and deleting them, mapping to // the "store", "get" and "erase" commands of the git-credential protocol.