1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
mod config;
mod endpoint;
mod endpoint_stats;
mod endpoint_url;
mod local_data;
mod registry;

pub use config::*;
pub use endpoint_stats::*;
pub use endpoint_url::EndpointUrl;
pub use endpoint_url::*;
pub use local_data::*;
pub use registry::*;

pub type RegistryUrl = String; // FIXME
pub type ChainName = String;

fn empty_string_array() -> Vec<String> {
	vec![]
}

fn default_true() -> bool {
	true
}