(handleFunc InitHandleFunc)
| 12 | initHandlers = append(initHandlers, handle) |
| 13 | } |
| 14 | func RegisterInitHandleFunc(handleFunc InitHandleFunc) { |
| 15 | initHandlers = append(initHandlers, handleFunc) |
| 16 | } |
| 17 | |
| 18 | type InitHandleFunc func(ctx context.Context, clusterId string, client IClientDriver) error |
| 19 |