use crate::{input::{Input, Subcmd}, config::Cfg}; pub fn io(_config: Cfg, input: Input) -> Result<(), Box> { match input.subcommand.ok_or("INVALID_INPUT")? { Subcmd::Export => {}, Subcmd::Import => {}, _ => {}, } Ok(()) }