예제 #1
0
func RegisterName(name string, rcvr interface{}) error {
	return rpcplus.RegisterName(name, rcvr)
}
예제 #2
0
파일: rpc.go 프로젝트: nightscape/flynn
func rpcHandler(repo *FormationRepo) http.Handler {
	rpcplus.RegisterName("Controller", &ControllerRPC{formations: repo})
	return rpc.New(rpcplus.DefaultServer)
}