hac_core/
command.rs

1use crate::collection::Collection;
2
3#[derive(Debug)]
4pub enum Command {
5    Quit,
6    SelectCollection(Collection),
7    Error(String),
8    CreateCollection(Collection),
9}