use std::sync::Once;
use mountpoint_s3_crt_sys::*;
use crate::common::allocator::Allocator;
pub mod request_response;
static HTTP_LIBRARY_INIT: Once = Once::new();
fn http_library_init(allocator: &Allocator) {
HTTP_LIBRARY_INIT.call_once(|| {
unsafe {
aws_http_library_init(allocator.inner.as_ptr());
}
});
}