tarantool-runner 0.1.0

CLI tool to execute tarantool Rust applications and build other tarantool-oriented utilities.
Documentation
1
2
3
4
5
6
7
use clap::Parser;
use tarantool_runner::Cli;

fn main() {
    let cli = Cli::parse();
    cli.process_command().expect("failed to process command");
}