mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 11:46:58 +00:00
10 lines
273 B
Go
10 lines
273 B
Go
package namespace
|
|
|
|
import "github.com/DeBrosOfficial/network/pkg/wireguard"
|
|
|
|
// getWireGuardIP returns the IPv4 address of the wg0 interface.
|
|
// Used as a fallback when Olric BindAddr is empty or 0.0.0.0.
|
|
func getWireGuardIP() (string, error) {
|
|
return wireguard.GetIP()
|
|
}
|