(ctx context.Context, clusterId string, client IClientDriver)
| 26 | } |
| 27 | |
| 28 | func InitGateway(ctx context.Context, clusterId string, client IClientDriver) (err error) { |
| 29 | for _, h := range initHandlers { |
| 30 | err = h.Init(ctx, clusterId, client) |
| 31 | if err != nil { |
| 32 | return |
| 33 | } |
| 34 | } |
| 35 | return |
| 36 | } |