1 2 3 4 5 6 7 8 9 10 11 12
use crate::Creeper; pub mod build_index; pub mod install; pub mod launch; pub mod nf_version; pub mod nuke; pub trait Execute { fn execute(self, lib: &Creeper) -> impl std::future::Future<Output = anyhow::Result<()>> + Send; }