subrpc_core/lib.rs
1mod config;
2mod endpoint;
3mod endpoint_stats;
4mod endpoint_url;
5mod local_data;
6mod registry;
7
8pub use config::*;
9pub use endpoint::*;
10pub use endpoint_stats::*;
11pub use endpoint_url::EndpointUrl;
12pub use local_data::*;
13pub use registry::*;
14
15pub type RegistryUrl = String; // FIXME
16pub type ChainName = String;
17
18fn empty_string_array() -> Vec<String> {
19 vec![]
20}
21
22fn default_true() -> bool {
23 true
24}