offchain_utils/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3pub mod offchain_api_key;
4
5pub mod fetcher;
6
7pub use offchain_api_key::{DefaultOffchainApiKey, OffchainApiKey};
8
9pub use fetcher::{DefaultOffchainFetcher, HttpRequest, OffchainFetcher};