Remove unused Resetter interface.

WaitForReset is not used since 70126177fb.
This commit is contained in:
David Fifield 2020-04-23 18:31:48 -06:00
parent 6c2e3adc41
commit 17c0d0ff82
2 changed files with 1 additions and 21 deletions

View file

@ -9,16 +9,10 @@ type Connector interface {
Connect() error
}
type Resetter interface {
Reset()
WaitForReset()
}
// Interface for a single remote WebRTC peer.
// In the Client context, "Snowflake" refers to the remote browser proxy.
type Snowflake interface {
io.ReadWriteCloser
Resetter
Connector
}