(format string, args ...any)
| 7 | ) |
| 8 | |
| 9 | func ParseErrorf(format string, args ...any) *proto.ParseComplete { |
| 10 | return &proto.ParseComplete{Error: fmt.Sprintf(format, args...)} |
| 11 | } |
| 12 | |
| 13 | func InitErrorf(format string, args ...any) *proto.InitComplete { |
| 14 | return &proto.InitComplete{Error: fmt.Sprintf(format, args...)} |