1 2 3 4 5 6 7 8 9
//! Task types and implementations // For now, this is a placeholder module // Tasks will be implemented through the delegate system // and integrated into the request/response flow pub(crate) mod data; pub(crate) mod download; pub(crate) mod upload;