rattler-bin 0.1.3

Rust binary for common Conda operations
1
2
3
4
5
6
7
8
use miette::IntoDiagnostic;
use rattler::cli::auth;

pub type Opt = auth::Args;

pub async fn auth(opt: Opt) -> miette::Result<()> {
    auth::execute(opt).await.into_diagnostic()
}