1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* Appellation: workspace <module> Contrib: FL03 <jo3mccain@icloud.com> */ use crate::types::Uid; pub struct Workspace { pub id: Uid, pub description: String, pub name: String, pub path: String, pub services: Vec<String>, }