ghost-eye/src/types/session.rs
Uncle Stretch bae21bb505
rustfmt whole project
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2025-11-13 17:10:08 +03:00

9 lines
213 B
Rust

use codec::Decode;
use serde::{Deserialize, Serialize};
#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize, Decode)]
pub struct SessionKeyInfo {
pub key: String,
pub is_stored: bool,
}