creeper 1.0.0-alpha.5

Minecraft Package Manager
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::Creeper;

pub mod add;
pub mod build_index;
pub mod init;
pub mod install;
pub mod launch;
pub mod login;
pub mod nuke;
mod prelude;

pub use prelude::*;

pub trait Execute {
    fn execute(self, lib: &Creeper)
    -> impl std::future::Future<Output = anyhow::Result<()>> + Send;
}