crud-file-server 0.2.0

A simple HTTP file server with PUT, GET 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;