X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=lib%2Fapiv1%2Fconfig.go;fp=lib%2Fapiv1%2Fconfig.go;h=0000000000000000000000000000000000000000;hb=7c7d90a781082c6bd22d12a5e2451ca61a5198af;hp=f5c1fb5a3b94b744edddd0dbc7ac0a675c463174;hpb=b9239d295a7fb7e3f5c595887b3bf77d50c8b216;p=src%2Fxds%2Fxds-agent.git diff --git a/lib/apiv1/config.go b/lib/apiv1/config.go deleted file mode 100644 index f5c1fb5..0000000 --- a/lib/apiv1/config.go +++ /dev/null @@ -1,22 +0,0 @@ -package apiv1 - -// APIConfig parameters (json format) of /config command -type APIConfig struct { - Servers []ServerCfg `json:"servers"` - - // Not exposed outside in JSON - Version string `json:"-"` - APIVersion string `json:"-"` - VersionGitTag string `json:"-"` -} - -// ServerCfg . -type ServerCfg struct { - ID string `json:"id"` - URL string `json:"url"` - APIURL string `json:"apiUrl"` - PartialURL string `json:"partialUrl"` - ConnRetry int `json:"connRetry"` - Connected bool `json:"connected"` - Disabled bool `json:"disabled"` -}