Crates.io | fuel-indexer-lib |
lib.rs | fuel-indexer-lib |
version | 0.25.0 |
source | src |
created_at | 2022-07-26 00:20:36.92333 |
updated_at | 2024-02-06 19:02:55.478983 |
description | Fuel Indexer Library |
homepage | https://fuel.network/ |
repository | https://github.com/FuelLabs/fuel-indexer |
max_upload_size | |
id | 632874 |
size | 159,789 |
A collection of utilities used by the various fuel-indexer-*
crates.
use fuel_indexer_lib::utils::trim_opt_env_key;
fn main() {
let a = "${ENV_VAR_KEY}";
assert_eq!(trim_opt_env_key(a), "ENV_VAR_KEY");
}