2021-11-21 23:05:13 -05:00
|
|
|
package gosecret
|
2021-11-21 18:07:52 -05:00
|
|
|
|
2021-11-21 23:12:25 -05:00
|
|
|
// Libsecret/SecretService identifiers.
|
|
|
|
const (
|
|
|
|
DbusItemsID string = "org.freedesktop.Secret.Collection.Items"
|
|
|
|
DbusCollectionDelete string = "org.freedesktop.Secret.Collection.Delete"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Dbus constants
|
2021-11-21 18:07:52 -05:00
|
|
|
const (
|
|
|
|
DBusServiceName string = "org.freedesktop.secrets"
|
|
|
|
DBusPath string = "/org/freedesktop/secrets"
|
|
|
|
PromptPrefix string = DBusPath + "/prompt/"
|
|
|
|
)
|