pzzld-server 0.0.2

A production ready server optimized for WASM applications
Documentation
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>,
}