mirror of
https://github.com/foomo/gotsrpc.git
synced 2025-10-16 12:35:35 +00:00
13 lines
210 B
Go
13 lines
210 B
Go
package frontend
|
|
|
|
type ErrSimple string
|
|
|
|
type (
|
|
ErrMulti struct {
|
|
A ErrMultiA `json:"a,omitempty" gotsrpc:"union"`
|
|
B ErrMultiB `json:"b,omitempty" gotsrpc:"union"`
|
|
}
|
|
ErrMultiA string
|
|
ErrMultiB string
|
|
)
|