1 Star 0 Fork 0

eden-framework/client_hass

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
client_api_create_automation.go 749 Bytes
一键复制 编辑 原始数据 按行查看 历史
文兄 提交于 2023-05-26 16:21 . init
package client_hass
import (
"path"
"strconv"
"time"
)
type CreateAutomationRequest struct {
Alias string `json:"alias"`
Description string `json:"description"`
Mode string `json:"mode"`
Trigger []map[string]any `json:"trigger"`
Condition []map[string]any `json:"condition"`
Action []map[string]any `json:"action"`
}
func (c *clientHASS) CreateAutomation(req CreateAutomationRequest) (err error) {
now := time.Now()
timestamp := now.UnixMilli()
request := CommonPost{
CommonRequest: &CommonRequest{},
Data: req,
}
err = c.RequestWithToken(
"POST",
path.Join("/api/config/automation/config", strconv.FormatInt(timestamp, 10)),
request,
).Do().Err
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

搜索帮助