aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/com/romangraef/jdacommander/Command.kt
blob: a5178e6376fec72be9696973750d589fd3e41cb7 (plain)
1
2
3
4
5
6
7
8
package com.romangraef.jdacommander

@Retention(AnnotationRetention.RUNTIME)
@Target(AnnotationTarget.CLASS)
annotation class Command
	(
	val value: String
)