mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-28 07:47:02 -05:00
20 lines
365 B
Rust
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);
|
|
};
|
|
|
|
} |