mirror of
https://github.com/NekoMonci12/Git-Craft.git
synced 2025-12-20 15:29:20 +00:00
17 lines
343 B
Java
17 lines
343 B
Java
package org.yuemi.commands;
|
|
|
|
import org.bukkit.plugin.java.JavaPlugin;
|
|
|
|
public class CommandRegistrar {
|
|
|
|
private final JavaPlugin plugin;
|
|
|
|
public CommandRegistrar(JavaPlugin plugin) {
|
|
this.plugin = plugin;
|
|
}
|
|
|
|
public void registerAll() {
|
|
plugin.getCommand("git").setExecutor(new GitRootCommand(plugin));
|
|
}
|
|
}
|