later 0.0.10

Distributed Background jobs manager and runner for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::collections::HashMap;

pub struct MemoryStorage {
    _storage: HashMap<String, String>,
}
impl MemoryStorage {
    pub fn new() -> Self {
        Self {
            _storage: Default::default(),
        }
    }
}