some prelim work

This commit is contained in:
brent s
2021-11-21 14:25:31 -05:00
parent a6f4afe491
commit 809c6d6f97
7 changed files with 170 additions and 89 deletions

10
errs.go Normal file
View File

@@ -0,0 +1,10 @@
package libsecret
import (
`errors`
)
var (
ErrNoDbusConn error = errors.New("no valid dbus connection")
ErrBadDbusPath error = errors.New("invalid dbus path")
)