This commit is contained in:
Jeremy Baxter 2026-03-20 22:07:19 +13:00
parent 30f21b4e7c
commit 97b505f9ab

View file

@ -33,7 +33,7 @@ func SendF(topic, title, message string, fn func(*Request)) (err error) {
}
func Send(topic, title, message string) error {
return SendF(topic, title, message)
return SendF(topic, title, message, func(r *Request) {})
}
func SendActions(topic, title, message string, actions ...string) error {