creeper 1.0.0-alpha.11

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

mod add;
mod complete;
mod init;
mod install;
mod launch;
mod login;
mod nuke;
mod prelude;

pub use prelude::*;

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