A minestom implementation of the Cloud Command Framework. (Pull Request)
repositories {
maven("https://maven.melonhell.ru/public")
}
dependencies {
implementation("ru.melonhell.cloudminestom:cloud-minestom:1.0.0-SNAPSHOT")
}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()
);