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