in tcc/local/cmd/local.go [37:48]
func business(ctx context.Context) (re error) {
if _, re = service.NewTestTCCServiceBusiness1Proxy().Prepare(ctx, 1); re != nil {
log.Errorf("TestTCCServiceBusiness1 prepare error, %v", re)
return
}
if _, re = service.NewTestTCCServiceBusiness2Proxy().Prepare(ctx, 3); re != nil {
log.Errorf("TestTCCServiceBusiness2 prepare error, %v", re)
return
}
return
}