(format string, args ...any)
| 11 | } |
| 12 | |
| 13 | func InitErrorf(format string, args ...any) *proto.InitComplete { |
| 14 | return &proto.InitComplete{Error: fmt.Sprintf(format, args...)} |
| 15 | } |
| 16 | |
| 17 | func PlanErrorf(format string, args ...any) *proto.PlanComplete { |
| 18 | return &proto.PlanComplete{Error: fmt.Sprintf(format, args...)} |