From 7c7d90a781082c6bd22d12a5e2451ca61a5198af Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Wed, 29 Nov 2017 11:19:00 +0100 Subject: Renamed apiv1 lib to xaapiv1. xa prefix (for Xds Agent) is safest to avoid confusion with xs prefix (for Xds Server) Signed-off-by: Sebastien Douheret --- lib/agent/apiv1-version.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/agent/apiv1-version.go') diff --git a/lib/agent/apiv1-version.go b/lib/agent/apiv1-version.go index c73010e..be72672 100644 --- a/lib/agent/apiv1-version.go +++ b/lib/agent/apiv1-version.go @@ -5,13 +5,13 @@ import ( "net/http" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-agent/lib/apiv1" + "github.com/iotbzh/xds-agent/lib/xaapiv1" ) // getInfo : return various information about server func (s *APIService) getVersion(c *gin.Context) { - response := apiv1.XDSVersion{ - Client: apiv1.VersionData{ + response := xaapiv1.XDSVersion{ + Client: xaapiv1.VersionData{ ID: "", Version: s.Config.Version, APIVersion: s.Config.APIVersion, @@ -19,9 +19,9 @@ func (s *APIService) getVersion(c *gin.Context) { }, } - svrVer := []apiv1.VersionData{} + svrVer := []xaapiv1.VersionData{} for _, svr := range s.xdsServers { - res := apiv1.VersionData{} + res := xaapiv1.VersionData{} if err := svr.GetVersion(&res); err != nil { errMsg := fmt.Sprintf("Cannot retrieve version of XDS server ID %s : %v", svr.ID, err.Error()) s.Log.Warning(errMsg) -- cgit 1.2.3-korg