From be13167b869161b6e19dc3e94835245cdc7911e5 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Tue, 31 Oct 2017 18:09:45 +0100 Subject: Moved all structs exposed by API into apiv1 package Signed-off-by: Sebastien Douheret --- lib/apiv1/config.go | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 lib/apiv1/config.go (limited to 'lib/apiv1/config.go') diff --git a/lib/apiv1/config.go b/lib/apiv1/config.go new file mode 100644 index 0000000..f5c1fb5 --- /dev/null +++ b/lib/apiv1/config.go @@ -0,0 +1,22 @@ +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"` +} -- cgit 1.2.3-korg