First Commit
This commit is contained in:
13
com/nemez/cmdmgr/Command.java
Normal file
13
com/nemez/cmdmgr/Command.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.nemez.cmdmgr;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
@Target(ElementType.METHOD)
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
public @interface Command {
|
||||
|
||||
String hook();
|
||||
}
|
||||
Reference in New Issue
Block a user