use crate::Settings;
#[derive(Clone, Debug, Hash, PartialEq, scsys::Deserialize, scsys::Serialize)]
pub struct Context {
pub settings: Settings,
}
impl Context {
fn constructor(settings: Settings) -> Self {
Self { settings }
}
pub fn new(settings: Settings) -> Self {
Self::constructor(settings)
}
}