Destination defines interface for a given destination service, like telegram, email and so on
| 26 | |
| 27 | // Destination defines interface for a given destination service, like telegram, email and so on |
| 28 | type Destination interface { |
| 29 | fmt.Stringer |
| 30 | Send(context.Context, Request) error |
| 31 | SendVerification(context.Context, VerificationRequest) error |
| 32 | } |
| 33 | |
| 34 | // Store defines the minimal interface accessing stored comments used by notifier |
| 35 | type Store interface { |
no outgoing calls
no test coverage detected