1use crate::conf::Configuration; 2 3pub trait Configurable { 4 fn set_conf(conf: &Configuration); 5 6 fn get_conf<'a>() -> &'a Configuration; 7}