optirs-tpu 0.3.1

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

use crate::pod_coordination::types::*;
use serde::{Deserialize, Serialize};

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

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