forked from Fascinated/Bat
11 lines
226 B
Java
11 lines
226 B
Java
|
package cc.fascinated.bat.command;
|
||
|
|
||
|
import lombok.AllArgsConstructor;
|
||
|
import lombok.Getter;
|
||
|
|
||
|
/**
|
||
|
* @author Fascinated (fascinated7)
|
||
|
*/
|
||
|
@AllArgsConstructor @Getter
|
||
|
public class BatSubCommand implements BatCommandExecutor { }
|