A minestom implementation of the Cloud Command Framework.
repositories {
maven { url "https://repo.jorisg.com/snapshots" }
}
dependencies {
implementation 'com.guflimc.cloud:cloud-minestom:+'
}
Creating the command manager. You can also use the AsyncCommandExecutionCoordinator
.
And custom command sender mapper functions.
MinestomCommandManager<CommandSender> commandManager = new MinestomCommandManager<>(
CommandExecutionCoordinator.simpleCoordinator(),
Function.identity(),
Function.identity()
);