1
0
Fork 0
golang-github-nicholas-fedo.../internal/testutils/eavesdropper.go
Daniel Baumann c0c4addb85
Adding upstream version 0.8.9.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-05-22 10:16:14 +02:00

7 lines
234 B
Go

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
}