func (s *testServiceServerPanicGuard) List(input *ListOptions, stream TestService_ListServer) (err error) { defer github_com_limbo_services_core_runtime_limbo.RecoverPanic(&err, s.handler) return s.inner.List(input, stream) }
func (s *testServiceServerPanicGuard) FetchPerson(ctx golang_org_x_net_context.Context, input *FetchOptions) (out *Person, err error) { defer github_com_limbo_services_core_runtime_limbo.RecoverPanic(&err, s.handler) return s.inner.FetchPerson(ctx, input) }
func (s *testServiceServerPanicGuard) Greet(ctx golang_org_x_net_context.Context, input *Person) (out *Greeting, err error) { defer github_com_limbo_services_core_runtime_limbo.RecoverPanic(&err, s.handler) return s.inner.Greet(ctx, input) }