| 52 | // ============================================================================ |
| 53 | |
| 54 | void printJsonRaw(const fl::json& json, const char* prefix) { |
| 55 | // Serialize and print response |
| 56 | fl::string formatted = fl::formatJsonResponse(json, prefix); |
| 57 | fl::println(formatted.c_str()); |
| 58 | fl::flush(); |
| 59 | } |
| 60 | |
| 61 | void printStreamRaw(const char* messageType, const fl::json& data) { |
| 62 | // Build pure JSONL message: RESULT: {"type":"...", ...data} |
nothing calls this directly
no test coverage detected