Files
ImHex-Patterns/includes/hex/http.pat
Nik f70b7066b9 includes: Switch over to import statements (#224)
* Update includes and patterns to new import system

* Update namespaces to new syntax
2024-02-25 22:04:41 +01:00

20 lines
365 B
Rust

#pragma once
import hex.impl.imhex_check;
/*!
Library to do HTTP requests
*/
namespace auto hex::http {
/**
Performs a HTTP GET request to the given URL and returns the response body
@param url URL to perform the request to
@return Response body
*/
fn get(str url) {
return builtin::hex::http::get(url);
};
}