Renamed apiv1 lib to xaapiv1.
[src/xds/xds-agent.git] / lib / agent / apiv1-version.go
index c73010e..be72672 100644 (file)
@@ -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)