asfa 0.6.0

Avoid sending file attachments by uploading to a remote site with non-guessable (hash-based) prefix and print URLs.
use crate::cfg::Config;
use crate::ssh::SshSession;

use anyhow::Result;

mod clean;
mod list;
mod push;
mod verify;

pub use clean::Clean;
pub use list::List;
pub use push::Push;
pub use verify::Verify;

pub trait Command {
    /// Run the given command
    fn run(&self, session: &SshSession, config: &Config) -> Result<()>;
}