1 2 3 4 5 6 7 8 9 10 11
use map::Map; use super::Task; mod actions; mod getters; mod init; pub struct Tasks{ tasks: Map<String, Task>, }