file_api 0.1.0

Library to abstract read. Based on prefix URL, it select the adapted reader (HTTP or local file system).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_name = "file_api"]
#![crate_type = "lib"]

#[macro_use]
extern crate log;
extern crate hyper;

mod file_system;
mod http;

mod buffer;

pub mod reader;