utiles 0.8.0

Web map tile utils (aka utiles)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::UtilesResult;
use crate::cli::commands::unimplemented_cmd_main;
use clap::Parser;
use tracing::debug;

#[derive(Debug, Parser)]
#[command(name = "addo", about = "add overviews to db")]
pub(crate) struct AddoArgs {
    #[arg(required = false)]
    fspath: Option<String>,
}

pub(crate) async fn addo_main(args: Option<AddoArgs>) -> UtilesResult<()> {
    debug!("args: {:?}", args);
    unimplemented_cmd_main("addo")
}