1 Star 0 Fork 0

eden-framework/client_hass

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
client_api_config.go 818 Bytes
一键复制 编辑 原始数据 按行查看 历史
文兄 提交于 2023-05-25 10:02 . init
package client_hass
type GetConfigResponse struct {
Components []string `json:"components"`
ConfigDir string `json:"config_dir"`
Elevation int `json:"elevation"`
Latitude float64 `json:"latitude"`
LocationName string `json:"location_name"`
Longitude float64 `json:"longitude"`
TimeZone string `json:"time_zone"`
UnitSystem struct {
Length string `json:"length"`
Mass string `json:"mass"`
Temperature string `json:"temperature"`
Volume string `json:"volume"`
} `json:"unit_system"`
Version string `json:"version"`
WhitelistExternalDirs []string `json:"whitelist_external_dirs"`
}
func (c *clientHASS) GetConfig() (resp *GetConfigResponse, err error) {
err = c.RequestWithToken("GET", "/api/config", nil).Do().Into(resp)
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/eden-framework/client_hass.git
git@gitee.com:eden-framework/client_hass.git
eden-framework
client_hass
client_hass
main

搜索帮助