(format string, args ...any)
| 19 | } |
| 20 | |
| 21 | func ApplyErrorf(format string, args ...any) *proto.ApplyComplete { |
| 22 | return &proto.ApplyComplete{Error: fmt.Sprintf(format, args...)} |
| 23 | } |
| 24 | |
| 25 | func GraphError(format string, args ...any) *proto.GraphComplete { |
| 26 | return &proto.GraphComplete{Error: fmt.Sprintf(format, args...)} |