pzzld_server/workers/
workspace.rs

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