signer-daemon 0.2.5

Signer daemon package.
Documentation
use poem_openapi::Object;
use serde::{Deserialize, Serialize};

use crate::model::viewobject::Null;

#[derive(Debug, Clone, Serialize, Deserialize, Object, PartialEq)]
pub struct OApiNull {}

impl From<Null> for OApiNull {
    fn from(_: Null) -> Self {
        Self {}
    }
}

impl Into<Null> for OApiNull {
    fn into(self) -> Null {
        Null {}
    }
}