dissertation-2-code/proxy/exchange.go
Jake Hillion c9c32349f2
All checks were successful
continuous-integration/drone/push Build is passing
added exchange type
2021-04-09 22:51:46 +01:00

8 lines
151 B
Go

package proxy
type Exchange interface {
Complete() bool
Initial() (out []byte, err error)
Handle(in []byte) (out []byte, data []byte, err error)
}