File: rich_sender.go

package info (click to toggle)
golang-github-nicholas-fedor-shoutrrr 0.8.15-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,200 kB
  • sloc: sh: 49; makefile: 5
file content (6 lines) | stat: -rw-r--r-- 177 bytes parent folder | download
1
2
3
4
5
6
package types

// RichSender is the interface needed to implement to send rich notifications.
type RichSender interface {
	SendItems(items []MessageItem, params Params) error
}