runmat 0.4.5

High-performance MATLAB/Octave syntax mathematical runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use runmat_server_client::auth::{execute_login, CredentialStoreMode};
use uuid::Uuid;

pub async fn execute_login_command(
    server: Option<String>,
    api_key: Option<String>,
    email: Option<String>,
    credential_store: CredentialStoreMode,
    org: Option<Uuid>,
    project: Option<Uuid>,
) -> Result<()> {
    execute_login(server, api_key, email, org, project, Some(credential_store)).await
}