snowflake/common/messages/ipc.go
Arlo Breault 87ad06a5e2 Get rid of legacy version
Move the logic for the legacy version into the http handlers and use a
shim when doing ipc.
2021-07-08 12:32:37 -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")
)