1
2
3
4
5
6
7
8
use crate::types::BoxedError;

pub trait ChainSpec {
    type Configuration;

    fn setup() -> Self;
    fn connect() -> Result<(), BoxedError>;
}