cinchdb 0.2.4

CLI for CinchDB - database and scope management
1
2
3
4
5
6
7
//! `cinch env <name>` - print eval-able environment variables for a database

use anyhow::Result;

pub async fn run(_name: &str, _scope: Option<&str>, _api_url: &str, _json: bool) -> Result<()> {
    anyhow::bail!("env command not yet implemented (Phase Meridian Step b)")
}