crud-file-server 0.3.0

A simple HTTP file server with POST, GET, PUT, PATCH and DELETE methods
Documentation
1
2
3
4
5
6
7
pub mod config;
pub mod serve;
pub mod state;

pub use config::Config;
pub use serve::serve;
pub use state::State;