snowflake/common/messages/ipc.go
Arlo Breault 0ef2250280 Get rid of legacy version
Move the logic for the legacy version into the http handlers and use a
shim when doing ipc.
2021-06-03 17:12:21 -04:00

15 lines
196 B
Go

package messages
import (
"errors"
)
type Arg struct {
Body []byte
RemoteAddr string
}
var (
ErrBadRequest = errors.New("bad request")
ErrInternal = errors.New("internal error")
)