Skip to content

Commit

Permalink
fixup! Add first cut of git-credential-fdoss
Browse files Browse the repository at this point in the history
Expand note on the `Secret` struct that is marshalable by the dbus
library.

Update the link to the spec which just changed.

Addresses: #3 (comment)
  • Loading branch information
camh- committed Aug 27, 2024
1 parent 63f0cfe commit c1dba53
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ type SecretService struct {
}

// Secret is a struct compatible with the [Secret] struct type as defined in
// the specification. This Go struct is marshalable by the dbus library into
// the correct wire format.
// the specification. This Go struct uses types that are marshalable by the
// dbus library into the correct wire format - no struct tags or other magic
// needed.
//
// [Secret]: // https://specifications.freedesktop.org/secret-service-spec/latest/types.html#type-Secret
// [Secret]: https://specifications.freedesktop.org/secret-service-spec/latest/types.html#type-Secret
type Secret struct {
Session dbus.ObjectPath
Params []byte
Expand Down

0 comments on commit c1dba53

Please sign in to comment.