mindflow 0.1.2

A command line client for Mindflow
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod utils;
pub mod resolve_handling;
pub mod commands;
pub mod requests;
pub mod command_helpers;
pub mod command_line_client;

use clap::Parser;

use crate::command_line_client::CommandLineClient;

#[tokio::main]
async fn main() {
    let mut client: CommandLineClient = CommandLineClient::parse();
    client.execute().await;
}