summaryrefslogtreecommitdiff
path: root/src/main/java/net/tylermurphy/ken/command/annotation/Command.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/net/tylermurphy/ken/command/annotation/Command.java')
-rw-r--r--src/main/java/net/tylermurphy/ken/command/annotation/Command.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/main/java/net/tylermurphy/ken/command/annotation/Command.java b/src/main/java/net/tylermurphy/ken/command/annotation/Command.java
new file mode 100644
index 0000000..a084635
--- /dev/null
+++ b/src/main/java/net/tylermurphy/ken/command/annotation/Command.java
@@ -0,0 +1,13 @@
+package net.tylermurphy.ken.command.annotation;
+
+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();
+}