2
0
mirror of https://github.com/status-im/status-go.git synced 2025-02-25 13:16:15 +00:00
2022-04-06 10:36:06 -04:00

16 lines
277 B
Go

//+build windows
package dbus
import "os"
const defaultSystemBusAddress = "tcp:host=127.0.0.1,port=12434"
func getSystemBusPlatformAddress() string {
address := os.Getenv("DBUS_SYSTEM_BUS_ADDRESS")
if address != "" {
return address
}
return defaultSystemBusAddress
}