1 2 3 4 5 6 7 8 9
use map::Map; use super::Tasks; impl Tasks{ pub(crate) fn new() -> Self{ Self { tasks: Map::new() } } }