optirs-tpu 0.3.2

OptiRS TPU coordination and pod management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Security Module

use serde::{Deserialize, Serialize};

#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct Security {
    pub id: String,
}

#[derive(Debug, Clone, Default)]
pub struct SecurityManager {
    pub items: Vec<Security>,
}