Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
db: uprev godbus and new packege file
A simple commit that uprevs godbus to latest version compatible with the go
version openxt-go is pinned to in go.mod.  It also adds db.go that provides a
location to hold the top level package documentation. Place the package global
variable PathDelimiter in db.go and document it.

Signed-off-by: Daniel P. Smith <dpsmith@apertussolutions.com>
  • Loading branch information
dpsmith committed Apr 7, 2026
commit cca18ac6d3cfda60df6443ecd7f7785280851755
13 changes: 13 additions & 0 deletions db/db.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// SPDX-License-Identifier: BSD-3-Clause
//
// Copyright 2026 Apertus Soutions, LLC
//

/*
Package db implements an client and server for OpenXT db.
*/
package db

// PathDelimiter allows specifying the delimiter used for path element
// separation.
var PathDelimiter string = "/"
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module github.com/openxt/openxt-go
go 1.12

require (
github.com/godbus/dbus/v5 v5.0.3
github.com/godbus/dbus/v5 v5.1.0
github.com/spf13/pflag v1.0.5
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github.com/godbus/dbus/v5 v5.0.3 h1:ZqHaoEF7TBzh4jzPmqVhE/5A1z9of6orkAe5uHoAeME=
github.com/godbus/dbus/v5 v5.0.3/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk=
github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=