hermes-cli-framework 0.1.0

Implementation of an IBC Relayer in Rust, as a library
Documentation
1
2
3
4
5
use std::path::Path;

pub trait Config: Sized {
    fn load_from_path(path: impl AsRef<Path>) -> Result<Self, Box<dyn std::error::Error>>;
}