blob: 0b961d560420413312833c52d43c0e4f47a9aac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package net.tylermurphy.ken.command;
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 name();
String description();
}
|