fileloft-core 0.1.0

Framework-agnostic core for the tus.io resumable upload protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod checksum;
pub mod config;
pub mod error;
pub mod handler;
pub mod hooks;
pub mod info;
pub mod lock;
pub mod proto;
pub mod store;
pub mod util;

pub use config::{Config, Extensions};
pub use error::TusError;
pub use handler::{TusHandler, TusRequest, TusResponse};
pub use hooks::{HookEvent, HookSender};
pub use info::{Metadata, UploadId, UploadInfo};
pub use lock::{Lock, Locker, SendLock, SendLocker};
pub use store::{DataStore, SendDataStore, SendUpload, Upload};