| 627 | } |
| 628 | |
| 629 | fl::task::Promise<Response> fetch_request(const fl::string& url, const RequestOptions& options) { |
| 630 | // Create a FetchOptions with the provided options |
| 631 | FetchOptions request(url, options); |
| 632 | |
| 633 | // Use the helper function to execute the request |
| 634 | return execute_fetch_request(url, request); |
| 635 | } |
| 636 | |
| 637 | void fetch_update() { |
| 638 | // Legacy function - use fl::task::run() for new code |
nothing calls this directly
no test coverage detected