thot_cli/commands/remote/
mod.rs

1use crate::result::Result;
2use clap::Args;
3
4pub fn main(args: RemoteArgs, verbose: bool) -> Result<()> {
5    todo!();
6    Ok(())
7}
8
9#[derive(Debug, Args)]
10pub struct RemoteArgs {}