change module name

changing module name to `gosecret` for V2.
This commit is contained in:
brent s
2021-11-21 23:05:13 -05:00
parent e298633935
commit bdee0ea110
10 changed files with 12 additions and 12 deletions

View File

@@ -1,11 +1,11 @@
package libsecret
package gosecret
import (
`github.com/godbus/dbus`
)
// NewCollection returns a pointer to a new Collection based on a Dbus connection and a Dbus path.
func NewCollection(conn *dbus.Conn, path dbus.ObjectPath) (coll *Collection) {
func NewCollection(conn *dbus.Conn, path dbus.ObjectPath) (coll *Collection, err error) {
coll = &Collection{
Conn: conn,