pub trait Context {
// Required methods
fn profile(&self) -> Result<Profile, Error>;
fn home(&self) -> Result<Home, Error>;
}Expand description
Context passed to all commands.
pub trait Context {
// Required methods
fn profile(&self) -> Result<Profile, Error>;
fn home(&self) -> Result<Home, Error>;
}Context passed to all commands.