(format string, args ...any)
| 15 | } |
| 16 | |
| 17 | func PlanErrorf(format string, args ...any) *proto.PlanComplete { |
| 18 | return &proto.PlanComplete{Error: fmt.Sprintf(format, args...)} |
| 19 | } |
| 20 | |
| 21 | func ApplyErrorf(format string, args ...any) *proto.ApplyComplete { |
| 22 | return &proto.ApplyComplete{Error: fmt.Sprintf(format, args...)} |