func validateLifeCycleReturns()

in fc/life_cycle_handler.go [44:49]


func validateLifeCycleReturns(handler reflect.Type) error {
	if handler.NumOut() != 0 {
		return fmt.Errorf("handler should not have a return value")
	}
	return nil
}