neoneo-go/pkg/rpc/param.go
2019-10-22 17:56:03 +03:00

21 lines
318 B
Go

package rpc
import (
"fmt"
)
type (
// Param represents a param either passed to
// the server or to send to a server using
// the client.
Param struct {
StringVal string
IntVal int
Type string
RawValue interface{}
}
)
func (p Param) String() string {
return fmt.Sprintf("%v", p.RawValue)
}