(ctx context.Context, msg *Message)
| 15 | // Provider is an interface implemented by all notification providers. |
| 16 | type Provider interface { |
| 17 | Send(ctx context.Context, msg *Message) error |
| 18 | |
| 19 | // Format returns the format of the message body that the provider supports, either "html" or "md", some providers will support both. |
| 20 | Format() string |
no outgoing calls