viceroy/src/installer/install.rs

5 lines
82 B
Rust

use anyhow::Result;
pub trait Installer {
fn download(&self) -> Result<()>;
}