net.minestom.server.command.builder.parser.CommandQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of minestom-snapshots Show documentation
Show all versions of minestom-snapshots Show documentation
1.20.4 Lightweight Minecraft server
package net.minestom.server.command.builder.parser;
import net.minestom.server.command.builder.Command;
import java.util.List;
public record CommandQueryResult(List parents,
Command command,
String commandName,
String[] args) {
}