mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 15:26:40 +00:00
Some features can only be manipulated via environment variables. With this PR, environment variables can be managed from Android.
33 lines
664 B
Go
33 lines
664 B
Go
package android
|
|
|
|
import "github.com/netbirdio/netbird/client/internal/peer"
|
|
|
|
var (
|
|
// EnvKeyNBForceRelay Exported for Android java client
|
|
EnvKeyNBForceRelay = peer.EnvKeyNBForceRelay
|
|
)
|
|
|
|
// EnvList wraps a Go map for export to Java
|
|
type EnvList struct {
|
|
data map[string]string
|
|
}
|
|
|
|
// NewEnvList creates a new EnvList
|
|
func NewEnvList() *EnvList {
|
|
return &EnvList{data: make(map[string]string)}
|
|
}
|
|
|
|
// Put adds a key-value pair
|
|
func (el *EnvList) Put(key, value string) {
|
|
el.data[key] = value
|
|
}
|
|
|
|
// Get retrieves a value by key
|
|
func (el *EnvList) Get(key string) string {
|
|
return el.data[key]
|
|
}
|
|
|
|
func (el *EnvList) AllItems() map[string]string {
|
|
return el.data
|
|
}
|