libwaj 0.4.1

The library to handle waj file, the pack format for web site.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod common;
pub mod create;
mod entry;
//pub mod fs_adder;
pub mod error;
mod serve;
mod waj;
pub mod walk;

pub use common::{AllProperties, Builder, Entry, FullBuilderTrait, VENDOR_ID};
pub use entry::*;
pub use serve::{HostRouter, Router, Server, SubPathRouter, WajServer};
pub use waj::Waj;
//pub use walk::*;

#[cfg(test)]
#[rustest::main]
fn main() {}