diff options
Diffstat (limited to 'utils.go')
-rw-r--r-- | utils.go | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -21,6 +21,7 @@ package main import ( "encoding/json" "fmt" + "strconv" "github.com/franciscocpg/reflectme" "github.com/iotbzh/xds-agent/lib/xaapiv1" @@ -83,6 +84,11 @@ func XdsServerIndexGet() int { return 0 } +// XdsServerComputeURL computes the URL used to access to XDS Server API +func XdsServerComputeURL(endURL string) string { + return "servers/" + strconv.Itoa(XdsServerIndexGet()) + endURL +} + // ProjectsListGet Get the list of existing projects func ProjectsListGet(prjs *[]xaapiv1.ProjectConfig) error { var data []byte |