junobuild-cdn 0.7.2

CDN logic for serving assets in Juno, backed by a request-based storage process.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod errors;
mod impls;
mod state;
mod types;
mod workflows;

pub use state::stable::{count_proposals, get_proposal, insert_proposal};
pub use state::store::*;
pub use state::types::*;
pub use types::*;
pub use workflows::commit::*;
pub use workflows::delete::*;
pub use workflows::init::*;
pub use workflows::pre_commit_assets::*;
pub use workflows::reject::*;
pub use workflows::submit::*;