fluidity-sdk 0.1.0

Flow is a complete digital identity platform
Documentation
/*
    Appellation: context <module>
    Creator: FL03 <jo3mccain@icloud.com>
    Description:
        ... Summary ...
*/
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)
    }
}