X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=lib%2Fapiv1%2Fagent.go;h=925f12ba320b2926bbfeed1a254dc4c933d5f52e;hb=347bd1674bbf67ccb6209951a4bf8f2971715532;hp=d8feb612fd3955d77123ca232a04477dd5c96099;hpb=7f1db509a2076311c280964715962df71a1631ce;p=src%2Fxds%2Fxds-server.git diff --git a/lib/apiv1/agent.go b/lib/apiv1/agent.go index d8feb61..925f12b 100644 --- a/lib/apiv1/agent.go +++ b/lib/apiv1/agent.go @@ -8,9 +8,10 @@ import ( "path/filepath" "github.com/gin-gonic/gin" - "github.com/iotbzh/xds-agent/lib/common" + common "github.com/iotbzh/xds-common/golib" ) +// XDSAgentTarball . type XDSAgentTarball struct { OS string `json:"os"` Arch string `json:"arch"` @@ -18,6 +19,8 @@ type XDSAgentTarball struct { RawVersion string `json:"raw-version"` FileURL string `json:"fileUrl"` } + +// XDSAgentInfo . type XDSAgentInfo struct { Tarballs []XDSAgentTarball `json:"tarballs"` } @@ -27,7 +30,7 @@ func (s *APIService) getXdsAgentInfo(c *gin.Context) { res := XDSAgentInfo{} tarballURL := "assets/xds-agent-tarballs" - tarballDir := filepath.Join(s.cfg.WebAppDir, "assets", "xds-agent-tarballs") + tarballDir := filepath.Join(s.cfg.FileConf.WebAppDir, "assets", "xds-agent-tarballs") if common.Exists(tarballDir) { files, err := filepath.Glob(path.Join(tarballDir, "xds-agent_*.zip")) if err != nil {