diff options
Diffstat (limited to 'src/main/kotlin/com/romangraef/jdacommander/Command.kt')
-rw-r--r-- | src/main/kotlin/com/romangraef/jdacommander/Command.kt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/kotlin/com/romangraef/jdacommander/Command.kt b/src/main/kotlin/com/romangraef/jdacommander/Command.kt new file mode 100644 index 0000000..a5178e6 --- /dev/null +++ b/src/main/kotlin/com/romangraef/jdacommander/Command.kt @@ -0,0 +1,8 @@ +package com.romangraef.jdacommander + +@Retention(AnnotationRetention.RUNTIME) +@Target(AnnotationTarget.CLASS) +annotation class Command + ( + val value: String +)
\ No newline at end of file |