binocular-cli 0.2.3

Not exactly a telescope, but it's useful sometimes. TUI to search/navigate through files and workspaces.
Documentation
1
2
3
4
5
6
use super::Cli;
use crate::runtime::config::ResolvedCli;

pub fn resolve_cli(cli: Cli, stdin_is_piped: bool) -> anyhow::Result<ResolvedCli> {
    ResolvedCli::from_cli(cli, stdin_is_piped)
}