gosecret/types.go

17 lines
373 B
Go
Raw Normal View History

2021-11-21 14:25:31 -05:00
package libsecret
import (
`github.com/godbus/dbus`
)
/*
Collection is an accessor for libsecret collections, which contain multiple Secret items.
Reference:
https://developer-old.gnome.org/libsecret/0.18/SecretCollection.html
https://specifications.freedesktop.org/secret-service/latest/ch03.html
*/
type Collection struct {
Conn *dbus.Conn
Dbus dbus.BusObject
}