added exchange type
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jake Hillion 2021-04-09 22:51:46 +01:00
parent ca2f3060db
commit c9c32349f2

7
proxy/exchange.go Normal file
View File

@ -0,0 +1,7 @@
package proxy
type Exchange interface {
Complete() bool
Initial() (out []byte, err error)
Handle(in []byte) (out []byte, data []byte, err error)
}