summaryrefslogtreecommitdiff
path: root/src/commands/io.rs
blob: dc1f4080b1df42bfed0b388481f4819da1243b89 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{input::{Input, Subcmd}, config::Cfg};

pub fn io(_config: Cfg, input: Input) -> Result<(), Box<dyn std::error::Error>> {
    
    match input.subcommand.ok_or("INVALID_INPUT")? {
        Subcmd::Export => {},
        Subcmd::Import => {},
        _ => {},
    }

    Ok(())
}