Files
the-way-to-go_ZH_CN/eBook/examples/chapter_15/rpc_objects.go
2013-05-07 23:43:09 -04:00

13 lines
184 B
Go

// rpc_objects.go
package rpc_objects
import "net"
type Args struct {
N, M int
}
func (t *Args) Multiply(args *Args, reply *int) net.Error {
*reply = args.N * args.M
return nil
}