Jake Hillion
c9c32349f2
All checks were successful
continuous-integration/drone/push Build is passing
8 lines
151 B
Go
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)
|
|
}
|