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
15
16
17
18
/*
    Appellation: workers <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
#![allow(unused)]
#[doc(inline)]
pub use self::{config::WorkerConfig, workspace::Workspace};

mod config;
mod workspace;

pub mod build;
pub mod serve;

pub mod prelude {
    pub use super::config::*;
    pub use super::workspace::*;
}