pma-cli 0.1.3

phpmyadmin cli written in Rust
Documentation
1
2
3
4
5
6
7
use clap::Parser;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let opt = pma_cli::Opt::parse();
    pma_cli::run(opt).await
}