@brief Make an HTTP GET request with URL string literal (cross-platform) @param url The URL to fetch (C-string) @param callback Function to call with the response
| 279 | /// @param url The URL to fetch (C-string) |
| 280 | /// @param callback Function to call with the response |
| 281 | inline void fetch(const char* url, const FetchCallback& callback) { |
| 282 | fetch(fl::string(url), callback); |
| 283 | } |
| 284 | |
| 285 | // ========== Promise-Based API (JavaScript-like) ========== |
| 286 |
no test coverage detected