bytefetch 0.2.0

A Rust library that makes HTTP file downloads easier to implement.
Documentation
mod actions;
mod callbacks;

use std::{collections::HashMap, sync::Arc};
use uuid::Uuid;

use crate::HttpDownloader;

struct DownloadManager {
    pub downloads: HashMap<Uuid, Arc<HttpDownloader>>,
}

impl DownloadManager {
    pub fn new() -> Self {
        Self {
            downloads: HashMap::new(),
        }
    }
}