itd/api/notify.go

14 lines
173 B
Go
Raw Normal View History

2021-10-24 01:41:03 +00:00
package api
2022-04-23 00:12:30 +00:00
func (c *Client) Notify(title, body string) error {
return c.client.Call(
"ITD",
2022-04-23 00:12:30 +00:00
"Notify",
NotifyData{
2021-10-24 01:41:03 +00:00
Title: title,
Body: body,
2021-10-24 01:41:03 +00:00
},
2022-04-23 00:12:30 +00:00
nil,
)
}