8 lines
147 B
Go
8 lines
147 B
Go
|
package rpc
|
||
|
|
||
|
// Ping return string 'pong', just for test
|
||
|
func (*Server) Ping(input string, output *string) error {
|
||
|
*output = "pong"
|
||
|
return nil
|
||
|
}
|