summaryrefslogtreecommitdiffstats
path: root/lib/apiv1/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'lib/apiv1/config.go')
-rw-r--r--lib/apiv1/config.go22
1 files changed, 0 insertions, 22 deletions
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"`
-}