File: eavesdropper.go

package info (click to toggle)
golang-github-nicholas-fedor-shoutrrr 0.8.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,332 kB
  • sloc: sh: 61; makefile: 5
file content (7 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
1
2
3
4
5
6
7
package testutils

// Eavesdropper is an interface that provides a way to get a summarized output of a connection RX and TX.
type Eavesdropper interface {
	GetConversation(includeGreeting bool) string
	GetClientSentences() []string
}